From 35170063f45ccb74210505c198c8c0ab5c532be0 Mon Sep 17 00:00:00 2001 From: Ian Beckwith Date: Sat, 17 Aug 2013 14:43:58 +0100 Subject: [PATCH] update debian copyright: tweak clscan and then manually fixup: revisit next release --- debian/clscan/clscan | 102 ++- debian/clscan/copyright.in | 2 +- debian/clscan/files.yaml | 2 +- debian/copyright | 2109 ++++++++++++++++++++++---------------------- 4 files changed, 1124 insertions(+), 1091 deletions(-) diff --git a/debian/clscan/clscan b/debian/clscan/clscan index 1fb4d3189..0e427e203 100755 --- a/debian/clscan/clscan +++ b/debian/clscan/clscan @@ -18,50 +18,50 @@ 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 . + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . EOL my $lgpl2_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. + 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 my $lgpl3_boilerplate=<<"EOL"; -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by -the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . EOL # license overrides as specified in modules/* @@ -173,6 +173,7 @@ sub write_copyright } my %refs=(); my $refnum="00"; + print COPYRIGHT license_trailer(sort keys(%$licenses)); for my $license (sort keys(%$licenses)) { for my $license_text (sort keys(%{$licenses->{$license}})) @@ -189,12 +190,18 @@ sub write_copyright $licensestr .= " [REF$refnum]"; $refs{$licensestr}=$license_text; } + else + { + if(!length($license)) { + $licensestr="unknown"; + } + } 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 "Files: ", join(' ', @filelist), "\n"; + print COPYRIGHT "Copyright: ". (length($copyright) ? $copyright : "unknown" ) . "\n"; print COPYRIGHT "License: $licensestr\n" if length($licensestr); print COPYRIGHT "\n"; } @@ -204,10 +211,10 @@ sub write_copyright { print COPYRIGHT "License: $ref\n"; my @text=split(/\n/, $refs{$ref}); + @text=map { ($_ eq "") ? "." : $_; } @text; print COPYRIGHT map { " " . $_ . "\n" } @text; print COPYRIGHT "\n"; } - print COPYRIGHT license_trailer(sort keys(%$licenses)); close(COPYRIGHT); } @@ -251,25 +258,26 @@ sub license_trailer } } } - my $text="\n"; + 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"; + $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 .= " 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); + $text .= sprintf(" %-60s %s\n", $license_data->{$type}, $type); } } + $text .= "\n\n"; return $text; } diff --git a/debian/clscan/copyright.in b/debian/clscan/copyright.in index db73f6145..b1ecc72ee 100644 --- a/debian/clscan/copyright.in +++ b/debian/clscan/copyright.in @@ -40,6 +40,7 @@ License: other > 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 @@ -49,4 +50,3 @@ License: other > This file is free software; 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 index 2599402a8..9bf43df1c 100644 --- a/debian/clscan/files.yaml +++ b/debian/clscan/files.yaml @@ -1110,7 +1110,7 @@ ./build-aux/mkinstalldirs: copyright: '' hash: fbad76aa017d3ccba0cfd78db353d5c15c571f4617320fd53b7ee67c788cbc65 - license: '' + license: PD license_text: 'Original author: Noah Friedman Created: 1993-05-16 diff --git a/debian/copyright b/debian/copyright index 691623895..8e879ba58 100644 --- a/debian/copyright +++ b/debian/copyright @@ -28,7 +28,7 @@ License: Files: debian/* Copyright: 2009-2013 Ian Beckwith 2006-2008 Daniel Baumann -License: GPL-2 +License: GPL-2+ Files: modules/* Copyright: 2002-2007 Free Software Foundation, Inc. @@ -40,6 +40,7 @@ License: other > 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 @@ -49,9 +50,24 @@ License: other > This file is free software; 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 3 LGPL-3 + Files: ./doc/intprops.texi Copyright: 2011-2013 Free Software Foundation, Inc +License: unknown + blah Files: ./doc/solaris-versions Copyright: 2003, 2005, 2006 Free Software Foundation, Inc. @@ -65,7 +81,7 @@ Files: ./doc/gnu-oids.texi Copyright: 2008, 2009, 2010 Free Software Foundation, Inc. License: other [REF01] -Files: ./doc/INSTALL, ./doc/INSTALL.ISO, ./doc/INSTALL.UTF-8, ./doc/install.texi +Files: ./doc/INSTALL ./doc/INSTALL.ISO ./doc/INSTALL.UTF-8 ./doc/install.texi Copyright: 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, Inc. License: other [REF02] @@ -81,7 +97,7 @@ Files: ./doc/COPYING.LESSERv2 Copyright: 1991, 1999 Free Software Foundation, Inc. License: other [REF04] -Files: ./doc/COPYING.LESSERv3, ./doc/COPYINGv3 +Files: ./doc/COPYING.LESSERv3 ./doc/COPYINGv3 Copyright: 2007 Free Software Foundation, Inc. License: other [REF04] @@ -93,1139 +109,1137 @@ Files: ./tests/unigbrk/GraphemeBreakTest.txt Copyright: 1991-2010 Unicode, Inc. License: other [REF06] -Files: ./build-aux/mkinstalldirs -License: other [REF07] - Files: ./build-aux/install-sh Copyright: 1994 X Consortium -License: other [REF08] +License: other [REF07] Files: ./build-aux/po/Makefile.in.in Copyright: 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper -License: other [REF09] +License: other [REF08] Files: ./m4/onceonly.m4 Copyright: 2002-2003, 2005-2006, 2008-2013 Free Software Foundation, Inc. -License: other [REF10] +License: other [REF09] Files: ./m4/afs.m4 Copyright: 1999-2001, 2004, 2008-2013 Free Software Foundation, Inc. -License: other [REF11] +License: other [REF10] Files: ./m4/ulonglong.m4 Copyright: 1999-2007, 2009-2013 Free Software Foundation, Inc. -License: other [REF11] +License: other [REF10] -Files: ./m4/locale-ar.m4, ./m4/locale-tr.m4 +Files: ./m4/locale-ar.m4 ./m4/locale-tr.m4 Copyright: 2003, 2005-2013 Free Software Foundation, Inc. -License: other [REF11] +License: other [REF10] Files: ./m4/gnulib-tool.m4 Copyright: 2004-2005, 2009-2013 Free Software Foundation, Inc. -License: other [REF11] +License: other [REF10] Files: ./m4/stat-macros.m4 Copyright: 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: other [REF11] +License: other [REF10] Files: ./m4/gnulib-common.m4 Copyright: 2007-2013 Free Software Foundation, Inc. -License: other [REF11] +License: other [REF10] -Files: ./m4/00gnulib.m4, ./m4/ungetc.m4 +Files: ./m4/00gnulib.m4 ./m4/ungetc.m4 Copyright: 2009-2013 Free Software Foundation, Inc. -License: other [REF11] +License: other [REF10] Files: ./doc/gnulib-readme.texi Copyright: 2001, 2003-2013 Free Software Foundation, Inc -License: GFDL-1.3+-NIV [REF12] +License: GFDL-1.3+-NIV [REF11] Files: ./doc/verify.texi Copyright: 2006, 2009-2013 Free Software Foundation, Inc. -License: GFDL-1.3+-NIV [REF12] +License: GFDL-1.3+-NIV [REF11] -Files: ./doc/maintain.texi, ./doc/standards.texi +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, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. -License: GFDL-1.3+-NIV [REF13] +License: GFDL-1.3+-NIV [REF12] Files: ./doc/make-stds.texi Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2004, 2005, 2006, 2007, 2008, 2010 Free Software Foundation, Inc. -License: GFDL-1.3+-NIV [REF13] +License: GFDL-1.3+-NIV [REF12] -Files: ./doc/alloca-opt.texi, ./doc/alloca.texi +Files: ./doc/alloca-opt.texi ./doc/alloca.texi Copyright: 2004, 2007, 2009-2013 Free Software Foundation, Inc. -License: GFDL-1.3+-NIV [REF13] +License: GFDL-1.3+-NIV [REF12] Files: ./doc/gnulib.texi Copyright: 2004-2009 Free Software Foundation, Inc. -License: GFDL-1.3+-NIV [REF13] +License: GFDL-1.3+-NIV [REF12] -Files: ./doc/ctime.texi, ./doc/inet_ntoa.texi, ./doc/quote.texi +Files: ./doc/ctime.texi ./doc/inet_ntoa.texi ./doc/quote.texi Copyright: 2005, 2009-2013 Free Software Foundation, Inc. -License: GFDL-1.3+-NIV [REF13] +License: GFDL-1.3+-NIV [REF12] Files: ./doc/lib-symbol-visibility.texi Copyright: 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: GFDL-1.3+-NIV [REF13] +License: GFDL-1.3+-NIV [REF12] Files: ./doc/gnulib-tool.texi Copyright: 2005-2013 Free Software Foundation, Inc. -License: GFDL-1.3+-NIV [REF13] +License: GFDL-1.3+-NIV [REF12] Files: ./doc/gcd.texi Copyright: 2006, 2009-2013 Free Software Foundation, Inc. -License: GFDL-1.3+-NIV [REF13] +License: GFDL-1.3+-NIV [REF12] Files: ./doc/error.texi Copyright: 2007, 2009-2013 Free Software Foundation, Inc. -License: GFDL-1.3+-NIV [REF13] +License: GFDL-1.3+-NIV [REF12] -Files: ./doc/c-ctype.texi, ./doc/c-strcase.texi, ./doc/c-strcaseeq.texi, ./doc/c-strcasestr.texi, ./doc/c-strstr.texi, ./doc/c-strtod.texi, ./doc/c-strtold.texi +Files: ./doc/c-ctype.texi ./doc/c-strcase.texi ./doc/c-strcaseeq.texi ./doc/c-strcasestr.texi ./doc/c-strstr.texi ./doc/c-strtod.texi ./doc/c-strtold.texi Copyright: 2008-2013 Free Software Foundation, Inc. -License: GFDL-1.3+-NIV [REF13] +License: GFDL-1.3+-NIV [REF12] -Files: ./build-aux/pmccabe.css, ./doc/gendocs_template, ./doc/relocatable.texi, ./lib/allocator.c, ./lib/bcopy.c, ./lib/c-strtold.c, ./lib/chmodat.c, ./lib/chownat.c, ./lib/close-stream.h, ./lib/dev-ino.h, ./lib/di-set.h, ./lib/dirchownmod.h, ./lib/dtoastr.c, ./lib/eealloc.c, ./lib/file-set.h, ./lib/fprintftime.c, ./lib/ftruncate.c, ./lib/getdate.h, ./lib/gl_xlist.c, ./lib/gl_xoset.c, ./lib/gl_xsublist.c, ./lib/hash-triple.h, ./lib/idcache.h, ./lib/ino-map.h, ./lib/isdir.h, ./lib/javaversion.class, ./lib/ldtoastr.c, ./lib/mkancesdirs.h, ./lib/mpsort.h, ./lib/posixver.h, ./lib/stat-macros.h, ./lib/statat.c, ./lib/timespec.c, ./lib/userspec.h, ./lib/utimens.h, ./lib/write-any-file.h, ./lib/xfreopen.h, ./lib/xgethostname.h, ./lib/xmemcoll.h, ./lib/xnanosleep.h, ./lib/xstrtoimax.c, ./lib/xstrtold.c, ./lib/xstrtoll.c, ./lib/xstrtoul.c, ./lib/xstrtoull.c, ./lib/xstrtoumax.c, ./lib/xtime.c, ./top/README-release -License: GPL [REF14] +Files: ./build-aux/pmccabe.css ./doc/gendocs_template ./doc/relocatable.texi ./lib/allocator.c ./lib/bcopy.c ./lib/c-strtold.c ./lib/chmodat.c ./lib/chownat.c ./lib/close-stream.h ./lib/dev-ino.h ./lib/di-set.h ./lib/dirchownmod.h ./lib/dtoastr.c ./lib/eealloc.c ./lib/file-set.h ./lib/fprintftime.c ./lib/ftruncate.c ./lib/getdate.h ./lib/gl_xlist.c ./lib/gl_xoset.c ./lib/gl_xsublist.c ./lib/hash-triple.h ./lib/idcache.h ./lib/ino-map.h ./lib/isdir.h ./lib/javaversion.class ./lib/ldtoastr.c ./lib/mkancesdirs.h ./lib/mpsort.h ./lib/posixver.h ./lib/stat-macros.h ./lib/statat.c ./lib/timespec.c ./lib/userspec.h ./lib/utimens.h ./lib/write-any-file.h ./lib/xfreopen.h ./lib/xgethostname.h ./lib/xmemcoll.h ./lib/xnanosleep.h ./lib/xstrtoimax.c ./lib/xstrtold.c ./lib/xstrtoll.c ./lib/xstrtoul.c ./lib/xstrtoull.c ./lib/xstrtoumax.c ./lib/xtime.c ./top/README-release +Copyright: unknown +License: GPL [REF13] Files: ./lib/idcache.c Copyright: 1985, 1988-1990, 1997-1998, 2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/filemode.c Copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/getloadavg.c Copyright: 1985-1989, 1991-1995, 1997, 1999-2000, 2003-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/linebuffer.c Copyright: 1986, 1991, 1998-1999, 2001, 2003-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/linebuffer.h Copyright: 1986, 1991, 1998-1999, 2002-2003, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/fstrcmp.c Copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/diffseq.h Copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/stat-size.h Copyright: 1989, 1991-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/fts_.h Copyright: 1989, 1993 The Regents of the University of California / 2004-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/modechange.h Copyright: 1989-1990, 1997, 2003-2005, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/modechange.c Copyright: 1989-1990, 1997-1999, 2001, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/posixtm.c Copyright: 1989-1991, 1998, 2000-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/userspec.c Copyright: 1989-1992, 1997-1998, 2000, 2002-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/fts.c Copyright: 1990, 1993, 1994 The Regents of the University of California / 2004-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/fileblocks.c Copyright: 1990, 1997-1999, 2004-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/mkdir-p.c Copyright: 1990, 1997-2000, 2002-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/savedir.c Copyright: 1990, 1997-2001, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/dirname.c Copyright: 1990, 1998, 2000-2001, 2003-2005, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/yesno.c Copyright: 1990, 1998, 2001, 2003-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/isdir.c Copyright: 1990, 1998, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/argmatch.h Copyright: 1990, 1998-1999, 2001-2002, 2004-2005, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/argmatch.c Copyright: 1990, 1998-1999, 2001-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/basename.c Copyright: 1990, 1998-2001, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/stripslash.c Copyright: 1990, 2001, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/readtokens.h Copyright: 1990-1991, 1999, 2001-2004, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/readtokens.c Copyright: 1990-1991, 1999-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/backupfile.h Copyright: 1990-1992, 1997-1999, 2003-2004, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/diacrit.c Copyright: 1990-1993, 2000, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/diacrit.h Copyright: 1990-1993, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xmalloc.c Copyright: 1990-2000, 2002-2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xalloc.h Copyright: 1990-2000, 2003-2004, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/backupfile.c Copyright: 1990-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/getusershell.c Copyright: 1991, 1997, 2000-2001, 2003-2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/mountlist.c Copyright: 1991-1992, 1997-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/mountlist.h Copyright: 1991-1992, 1998, 2000-2005, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/getcwd.c Copyright: 1991-1999, 2004-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/setenv.c Copyright: 1992, 1995-1999, 2000-2003, 2005-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xgetdomainname.h Copyright: 1992, 1996, 2000-2001, 2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xgetdomainname.c Copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xgethostname.c Copyright: 1992, 1996, 2000-2001, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/exclude.h Copyright: 1992-1994, 1997, 1999, 2001-2003, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/exclude.c Copyright: 1992-1994, 1997, 1999, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/getloadavg.m4 Copyright: 1992-1996, 1999-2000, 2002-2003, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/readutmp.c Copyright: 1992-2001, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/readutmp.h Copyright: 1992-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/long-options.h Copyright: 1993-1994, 1998-1999, 2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/long-options.c Copyright: 1993-1994, 1998-2000, 2002-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/file-type.h Copyright: 1993-1994, 2001-2002, 2004-2005, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/file-type.c Copyright: 1993-1994, 2001-2002, 2004-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./doc/getdate.texi Copyright: 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, 2010 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/group-member.c Copyright: 1994, 1997-1998, 2003, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/mkdir-p.h Copyright: 1994-1997, 2000, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./doc/parse-datetime.texi Copyright: 1994-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/memcpy.c Copyright: 1995, 1997, 2000, 2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/save-cwd.h Copyright: 1995, 1997-1998, 2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/parse-datetime.h Copyright: 1995, 1997-1998, 2003-2004, 2007, 2009-2013 Free Software Foundation Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/save-cwd.c Copyright: 1995, 1997-1998, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/fstrcmp.h Copyright: 1995, 2000, 2002-2003, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xgetcwd.h Copyright: 1995, 2001, 2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/regex-quote.c, ./lib/regex-quote.h +Files: ./lib/regex-quote.c ./lib/regex-quote.h Copyright: 1995, 2010-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/xstrtol-error.c, ./lib/xstrtol.h +Files: ./lib/xstrtol-error.c ./lib/xstrtol.h Copyright: 1995-1996, 1998-1999, 2001-2004, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xstrtol.c Copyright: 1995-1996, 1998-2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/rpmatch.c Copyright: 1996, 1998, 2000, 2002-2003, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/memcasecmp.h Copyright: 1996, 1998, 2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xstrtod.h Copyright: 1996, 1998, 2003-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/jm-winsz2.m4 Copyright: 1996, 1999, 2001, 2004, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/jm-winsz1.m4 Copyright: 1996, 1999, 2001-2002, 2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xstrtod.c Copyright: 1996, 1999-2000, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/uptime.m4 Copyright: 1996, 1999-2001, 2004, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/memcasecmp.c Copyright: 1996-1997, 2000, 2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/lib-ld.m4 Copyright: 1996-2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/filenamecat.c Copyright: 1996-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/canonicalize.h, ./lib/human.c, ./lib/human.h +Files: ./lib/canonicalize.h ./lib/human.c ./lib/human.h Copyright: 1996-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./build-aux/config.libpath, ./lib/canonicalize-lgpl.c, ./lib/canonicalize.c +Files: ./build-aux/config.libpath ./lib/canonicalize-lgpl.c ./lib/canonicalize.c Copyright: 1996-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/savedir.h Copyright: 1997, 1999, 2001, 2003, 2005, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/d-ino.m4 Copyright: 1997, 1999-2001, 2003-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/hard-locale.c Copyright: 1997-1999, 2002-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xalloc-die.c Copyright: 1997-2000, 2002-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/same.c Copyright: 1997-2000, 2002-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/same.h Copyright: 1997-2000, 2003-2004, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/lstat.m4 Copyright: 1997-2001, 2003-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/inttypes_h.m4 Copyright: 1997-2004, 2006, 2008, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/stdint_h.m4 Copyright: 1997-2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/intmax_t.m4 Copyright: 1997-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/filemode.h Copyright: 1998, 1999, 2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/closeout.h Copyright: 1998, 2000, 2003-2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/posixtm.h Copyright: 1998, 2003, 2005, 2007-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/hash.h Copyright: 1998-1999, 2001, 2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/fstypename.m4 Copyright: 1998-1999, 2001, 2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/assert.m4 Copyright: 1998-1999, 2001, 2004, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/st_dm_mode.m4 Copyright: 1998-1999, 2001, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/quote.h Copyright: 1998-2001, 2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/perl.m4, ./m4/utimbuf.m4 +Files: ./m4/perl.m4 ./m4/utimbuf.m4 Copyright: 1998-2001, 2003-2004, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/closeout.c, ./lib/quotearg.h +Files: ./lib/closeout.c ./lib/quotearg.h Copyright: 1998-2002, 2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/close-stream.c Copyright: 1998-2002, 2004, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/quotearg.c Copyright: 1998-2002, 2004-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/ls-mntd-fs.m4 Copyright: 1998-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/hash.c Copyright: 1998-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/unlocked-io.m4 Copyright: 1998-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/c-asprintf.c Copyright: 1999, 2002, 2006-2007, 2009-2013 Free Software Foundation -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/c-vasprintf.c Copyright: 1999, 2002, 2006-2013 Free Software Foundation, Inc -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/printf-parse.h Copyright: 1999, 2002-2003, 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/printf-args.c Copyright: 1999, 2002-2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/printf-args.h Copyright: 1999, 2002-2003, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/c-xasprintf.c Copyright: 1999, 2002-2004, 2006, 2009-2013 Free Software Foundation -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/memcoll.c, ./lib/xasprintf.c +Files: ./lib/memcoll.c ./lib/xasprintf.c Copyright: 1999, 2002-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/c-xvasprintf.c Copyright: 1999, 2002-2004, 2006-2013 Free Software Foundation, Inc -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xvasprintf.c Copyright: 1999, 2002-2004, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/vasnprintf.c Copyright: 1999, 2002-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/memcoll.h Copyright: 1999, 2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/hard-locale.h Copyright: 1999, 2003-2004, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/printf-parse.c Copyright: 1999-2000, 2002-2003, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/parse-datetime.y Copyright: 1999-2000, 2002-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/group-member.m4 Copyright: 1999-2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/link-follow.m4 Copyright: 1999-2001, 2004-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/longlong.m4 Copyright: 1999-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/timespec.h Copyright: 2000, 2002, 2004-2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/fpending.h Copyright: 2000, 2003, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/fpending.c Copyright: 2000, 2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/ftruncate.m4, ./m4/timespec.m4 +Files: ./m4/ftruncate.m4 ./m4/timespec.m4 Copyright: 2000-2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/unlink-busy.m4 Copyright: 2000-2001, 2004, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/fpending.m4 Copyright: 2000-2001, 2004-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/rmdir-errno.m4 Copyright: 2000-2001, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/unictype/3level.h Copyright: 2000-2001, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/mbswidth.m4 Copyright: 2000-2002, 2004, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/gen-uni-tables.c Copyright: 2000-2002, 2004, 2007-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/mbstate_t.m4 Copyright: 2000-2002, 2008, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/unictype/3levelbit.h Copyright: 2000-2002, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/unicodeio.h Copyright: 2000-2003, 2005, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/c-ctype.h, ./lib/unicodeio.c +Files: ./lib/c-ctype.h ./lib/unicodeio.c Copyright: 2000-2003, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/c-ctype.c Copyright: 2000-2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/mbswidth.h Copyright: 2000-2004, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/mbswidth.c Copyright: 2000-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/unlocked-io.h Copyright: 2001, 2002, 2003, 2004, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/unistd-safer.h Copyright: 2001, 2003, 2005, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/stdio-safer.h Copyright: 2001, 2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/clean-temp.c Copyright: 2001, 2003, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./top/GNUmakefile Copyright: 2001, 2003, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/host-os.m4 Copyright: 2001, 2003-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xgetcwd.c Copyright: 2001, 2003-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/areadlink.h, ./lib/xreadlink.h +Files: ./lib/areadlink.h ./lib/xreadlink.h Copyright: 2001, 2003-2004, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/careadlinkat.c Copyright: 2001, 2003-2004, 2007, 2009-2013 Free Software Foundation. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/areadlink.c, ./lib/areadlinkat-with-size.c, ./lib/areadlinkat.c, ./lib/xreadlink.c, ./lib/xreadlinkat.c, ./m4/getcwd.m4 +Files: ./lib/areadlink.c ./lib/areadlinkat-with-size.c ./lib/areadlinkat.c ./lib/xreadlink.c ./lib/xreadlinkat.c ./m4/getcwd.m4 Copyright: 2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/w32spawn.h Copyright: 2001, 2003-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/fopen-safer.c Copyright: 2001, 2004-2005, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/dup-safer-flag.c, ./lib/dup-safer.c +Files: ./lib/dup-safer-flag.c ./lib/dup-safer.c Copyright: 2001, 2004-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/mbmemcasecoll.c, ./lib/mbmemcasecoll.h +Files: ./lib/mbmemcasecoll.c ./lib/mbmemcasecoll.h Copyright: 2001, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/sh-quote.h Copyright: 2001-2002, 2004, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/mbrtowc.m4 Copyright: 2001-2002, 2004-2005, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xsetenv.c Copyright: 2001-2002, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/gcd.c, ./lib/gcd.h, ./lib/javacomp.h +Files: ./lib/gcd.c ./lib/gcd.h ./lib/javacomp.h Copyright: 2001-2002, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xsetenv.h Copyright: 2001-2002, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/javaexec.h Copyright: 2001-2002, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/progname.c, ./lib/wait-process.c +Files: ./lib/progname.c ./lib/wait-process.c Copyright: 2001-2003, 2005-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/pipe.h Copyright: 2001-2003, 2006, 2008-2011 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/spawn-pipe.h, ./lib/wait-process.h +Files: ./lib/spawn-pipe.h ./lib/wait-process.h Copyright: 2001-2003, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/classpath.c, ./m4/javaexec.m4 +Files: ./lib/classpath.c ./m4/javaexec.m4 Copyright: 2001-2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/copy-file.c, ./m4/javacomp.m4 +Files: ./lib/copy-file.c ./m4/javacomp.m4 Copyright: 2001-2003, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/javacomp.c, ./lib/javaexec.c +Files: ./lib/javacomp.c ./lib/javaexec.c Copyright: 2001-2003, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/execute.h, ./lib/pipe-filter-aux.h, ./lib/pipe-filter-gi.c, ./lib/pipe-filter-ii.c +Files: ./lib/execute.h ./lib/pipe-filter-aux.h ./lib/pipe-filter-gi.c ./lib/pipe-filter-ii.c Copyright: 2001-2003, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/copy-file.h, ./lib/findprog.h +Files: ./lib/copy-file.h ./lib/findprog.h Copyright: 2001-2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/progname.h, ./lib/sh-quote.c, ./lib/xstriconv.c +Files: ./lib/progname.h ./lib/sh-quote.c ./lib/xstriconv.c Copyright: 2001-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xstriconv.h Copyright: 2001-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/execute.c, ./lib/findprog.c, ./lib/spawn-pipe.c, ./lib/xconcat-filename.c, ./m4/environ.m4, ./m4/setenv.m4 +Files: ./lib/execute.c ./lib/findprog.c ./lib/spawn-pipe.c ./lib/xconcat-filename.c ./m4/environ.m4 ./m4/setenv.m4 Copyright: 2001-2004, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/concat-filename.h Copyright: 2001-2004, 2007-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xstriconveh.h Copyright: 2001-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/system-quote.h Copyright: 2001-2013 Free Software Foundation, Inc -License: GPL [REF14] +License: GPL [REF13] -Files: ./build-aux/javacomp.sh.in, ./build-aux/javaexec.sh.in, ./top/maint.mk +Files: ./build-aux/javacomp.sh.in ./build-aux/javaexec.sh.in ./top/maint.mk Copyright: 2001-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/c-stack.m4 Copyright: 2002, 2003, 2004, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/c-stack.c Copyright: 2002, 2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/sig2str.c Copyright: 2002, 2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/c-stack.h Copyright: 2002, 2004, 2008, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/gettime.m4, ./m4/settime.m4 +Files: ./m4/gettime.m4 ./m4/settime.m4 Copyright: 2002, 2004-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/gettime.c, ./lib/settime.c +Files: ./lib/gettime.c ./lib/settime.c Copyright: 2002, 2004-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/acl.m4, ./m4/quotearg.m4 +Files: ./m4/acl.m4 ./m4/quotearg.m4 Copyright: 2002, 2004-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/sig2str.h, ./m4/bison.m4 +Files: ./lib/sig2str.h ./m4/bison.m4 Copyright: 2002, 2005, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/fileblocks.m4, ./m4/filemode.m4, ./m4/sig2str.m4, ./m4/unistd-safer.m4 +Files: ./m4/fileblocks.m4 ./m4/filemode.m4 ./m4/sig2str.m4 ./m4/unistd-safer.m4 Copyright: 2002, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/acl.h Copyright: 2002, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/memcpy.m4, ./m4/tm_gmtoff.m4 +Files: ./m4/memcpy.m4 ./m4/tm_gmtoff.m4 Copyright: 2002, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/closeout.m4, ./m4/idcache.m4, ./m4/memcoll.m4, ./m4/modechange.m4, ./m4/pathmax.m4, ./m4/quote.m4, ./m4/readtokens.m4, ./m4/same.m4, ./m4/savedir.m4, ./m4/xstrtod.m4, ./m4/yesno.m4 +Files: ./m4/closeout.m4 ./m4/idcache.m4 ./m4/memcoll.m4 ./m4/modechange.m4 ./m4/pathmax.m4 ./m4/quote.m4 ./m4/readtokens.m4 ./m4/same.m4 ./m4/savedir.m4 ./m4/xstrtod.m4 ./m4/yesno.m4 Copyright: 2002-2003, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/posixtm.m4 Copyright: 2002-2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/qcopy-acl.c, ./lib/qset-acl.c, ./lib/set-acl.c +Files: ./lib/qcopy-acl.c ./lib/qset-acl.c ./lib/set-acl.c Copyright: 2002-2003, 2005-2013 Free Software Foundation, Inc -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/acl-internal.h, ./lib/acl_entries.c, ./lib/copy-acl.c, ./lib/file-has-acl.c +Files: ./lib/acl-internal.h ./lib/acl_entries.c ./lib/copy-acl.c ./lib/file-has-acl.c Copyright: 2002-2003, 2005-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/getusershell.m4 Copyright: 2002-2003, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/rpmatch.m4 Copyright: 2002-2003, 2007-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/getdomainname.m4, ./m4/libsigsegv.m4, ./m4/wchar_t.m4 +Files: ./m4/getdomainname.m4 ./m4/libsigsegv.m4 ./m4/wchar_t.m4 Copyright: 2002-2003, 2008, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/unicodeio.m4 Copyright: 2002-2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xmemcoll.c Copyright: 2002-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/c-vasprintf.h, ./lib/c-xvasprintf.h +Files: ./lib/c-vasprintf.h ./lib/c-xvasprintf.h Copyright: 2002-2004, 2006-2013 Free Software Foundation, Inc -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/xvasprintf.h, ./m4/vasnprintf.m4 +Files: ./lib/xvasprintf.h ./m4/vasnprintf.m4 Copyright: 2002-2004, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/c-vasnprintf.h Copyright: 2002-2004, 2007-2013 Free Software Foundation, Inc -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/vasnprintf.h Copyright: 2002-2004, 2007-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/parse-datetime.m4 Copyright: 2002-2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/posixver.c, ./m4/backupfile.m4, ./m4/filenamecat.m4, ./m4/hard-locale.m4, ./m4/human.m4, ./m4/mkdir-p.m4, ./m4/mountlist.m4, ./m4/posixver.m4, ./m4/save-cwd.m4, ./m4/userspec.m4, ./m4/xalloc.m4, ./m4/xgetcwd.m4 +Files: ./lib/posixver.c ./m4/backupfile.m4 ./m4/filenamecat.m4 ./m4/hard-locale.m4 ./m4/human.m4 ./m4/mkdir-p.m4 ./m4/mountlist.m4 ./m4/posixver.m4 ./m4/save-cwd.m4 ./m4/userspec.m4 ./m4/xalloc.m4 ./m4/xgetcwd.m4 Copyright: 2002-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/xnanosleep.c, ./m4/xstrtol.m4 +Files: ./lib/xnanosleep.c ./m4/xstrtol.m4 Copyright: 2002-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./build-aux/announce-gen, ./m4/readutmp.m4 +Files: ./build-aux/announce-gen ./m4/readutmp.m4 Copyright: 2002-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./build-aux/gendocs.sh Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/utimens.c Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/c-strtod.c Copyright: 2003, 2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xmalloca.h Copyright: 2003, 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/relocatable.h Copyright: 2003, 2005, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/fwriteerror.h Copyright: 2003, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/relocwrapper.c, ./m4/relocatable-lib.m4, ./m4/relocatable.m4 +Files: ./lib/relocwrapper.c ./m4/relocatable-lib.m4 ./m4/relocatable.m4 Copyright: 2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/getdomainname.c Copyright: 2003, 2006, 2008, 2010-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/free.c Copyright: 2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/malloca.c, ./lib/xmalloca.c, ./lib/xstrndup.c +Files: ./lib/malloca.c ./lib/xmalloca.c ./lib/xstrndup.c Copyright: 2003, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/readlink.m4 Copyright: 2003, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/printf.m4, ./m4/wint_t.m4 +Files: ./m4/printf.m4 ./m4/wint_t.m4 Copyright: 2003, 2007-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/eealloc.h Copyright: 2003, 2008, 2010-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/execute.m4, ./m4/wait-process.m4 +Files: ./m4/execute.m4 ./m4/wait-process.m4 Copyright: 2003, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/classpath.h, ./lib/csharpcomp.h, ./lib/csharpexec.h, ./lib/xstrndup.h, ./m4/copy-file.m4, ./m4/eaccess.m4, ./m4/eealloc.m4, ./m4/findprog.m4, ./m4/getnline.m4, ./m4/sig_atomic_t.m4, ./m4/xstrndup.m4 +Files: ./lib/classpath.h ./lib/csharpcomp.h ./lib/csharpexec.h ./lib/xstrndup.h ./m4/copy-file.m4 ./m4/eaccess.m4 ./m4/eealloc.m4 ./m4/findprog.m4 ./m4/getnline.m4 ./m4/sig_atomic_t.m4 ./m4/xstrndup.m4 Copyright: 2003, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/fatal-signal.m4 Copyright: 2003-2004, 2006, 2008, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/cycle-check.h, ./lib/getnline.c +Files: ./lib/cycle-check.h ./lib/getnline.c Copyright: 2003-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/malloca.m4 Copyright: 2003-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/fatal-signal.c Copyright: 2003-2004, 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/c-strtod.h, ./lib/fatal-signal.h, ./lib/getnline.h +Files: ./lib/c-strtod.h ./lib/fatal-signal.h ./lib/getnline.h Copyright: 2003-2004, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/csharpcomp.m4 Copyright: 2003-2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/csharpexec.m4, ./m4/free.m4, ./m4/utimes.m4 +Files: ./m4/csharpexec.m4 ./m4/free.m4 ./m4/utimes.m4 Copyright: 2003-2005, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/fwriteerror.c, ./lib/relocatable.c +Files: ./lib/fwriteerror.c ./lib/relocatable.c Copyright: 2003-2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/cycle-check.c, ./lib/fts-cycle.c +Files: ./lib/cycle-check.c ./lib/fts-cycle.c Copyright: 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/malloca.h, ./lib/readlink.c, ./m4/canonicalize.m4, ./m4/getcwd-path-max.m4 +Files: ./lib/malloca.h ./lib/readlink.c ./m4/canonicalize.m4 ./m4/getcwd-path-max.m4 Copyright: 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./build-aux/csharpcomp.sh.in, ./build-aux/csharpexec.sh.in, ./build-aux/install-reloc, ./build-aux/reloc-ldflags, ./build-aux/relocatable.sh.in, ./lib/csharpcomp.c, ./lib/csharpexec.c, ./lib/progreloc.c, ./m4/utimens.m4 +Files: ./build-aux/csharpcomp.sh.in ./build-aux/csharpexec.sh.in ./build-aux/install-reloc ./build-aux/reloc-ldflags ./build-aux/relocatable.sh.in ./lib/csharpcomp.c ./lib/csharpexec.c ./lib/progreloc.c ./m4/utimens.m4 Copyright: 2003-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/calloc.c, ./lib/utimecmp.c +Files: ./lib/calloc.c ./lib/utimecmp.c Copyright: 2004, 2005, 2006, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/readtokens0.c Copyright: 2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/c-snprintf.c, ./lib/c-vsnprintf.c +Files: ./lib/c-snprintf.c ./lib/c-vsnprintf.c Copyright: 2004, 2006-2013 Free Software Foundation, Inc -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/spawn-pipe.m4 Copyright: 2004, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/readtokens0.h, ./lib/utimecmp.h, ./lib/yesno.h, ./m4/savewd.m4 +Files: ./lib/readtokens0.h ./lib/utimecmp.h ./lib/yesno.h ./m4/savewd.m4 Copyright: 2004, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/chdir-long.h, ./m4/csharp.m4 +Files: ./lib/chdir-long.h ./m4/csharp.m4 Copyright: 2004-2005, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/openat.h Copyright: 2004-2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/c-strtod.m4 Copyright: 2004-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./m4/chdir-long.m4, ./m4/utimecmp.m4 +Files: ./m4/chdir-long.m4 ./m4/utimecmp.m4 Copyright: 2004-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/mkdirat.m4 Copyright: 2004-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./build-aux/gnupload, ./lib/chdir-long.c, ./lib/fdopendir.c, ./lib/openat.c, ./m4/calloc.m4, ./m4/fchmodat.m4, ./m4/fchownat.m4, ./m4/fstatat.m4, ./m4/openat.m4, ./m4/unlinkat.m4 +Files: ./build-aux/gnupload ./lib/chdir-long.c ./lib/fdopendir.c ./lib/openat.c ./m4/calloc.m4 ./m4/fchmodat.m4 ./m4/fchownat.m4 ./m4/fstatat.m4 ./m4/openat.m4 ./m4/unlinkat.m4 Copyright: 2004-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/cycle-check.m4 Copyright: 2005, 2006, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/openat-safer.c Copyright: 2005, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/mmap-anon.m4 Copyright: 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/pagealign_alloc.h Copyright: 2005, 2008, 2010-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/chdir-safer.h, ./lib/fcntl--.h, ./lib/fcntl-safer.h, ./lib/fprintftime.h, ./lib/gethrxtime.h, ./lib/readline.h, ./lib/stdlib-safer.h, ./lib/unistd--.h, ./lib/unlinkdir.h +Files: ./lib/chdir-safer.h ./lib/fcntl--.h ./lib/fcntl-safer.h ./lib/fprintftime.h ./lib/gethrxtime.h ./lib/readline.h ./lib/stdlib-safer.h ./lib/unistd--.h ./lib/unlinkdir.h Copyright: 2005, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/chdir-safer.c, ./lib/open-safer.c, ./lib/openat-die.c, ./m4/gethrxtime.m4, ./m4/lchmod.m4 +Files: ./lib/chdir-safer.c ./lib/open-safer.c ./lib/openat-die.c ./m4/gethrxtime.m4 ./m4/lchmod.m4 Copyright: 2005-2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/creat-safer.c, ./lib/fd-safer-flag.c, ./lib/fd-safer.c, ./lib/mkdirat.c, ./lib/openat-priv.h, ./lib/pipe-safer.c, ./lib/pipe2-safer.c, ./lib/stdio--.h, ./lib/unlinkdir.c, ./lib/xtime.h, ./m4/bison-i18n.m4, ./m4/chdir-safer.m4, ./m4/memcasecmp.m4, ./m4/readline.m4, ./m4/xnanosleep.m4 +Files: ./lib/creat-safer.c ./lib/fd-safer-flag.c ./lib/fd-safer.c ./lib/mkdirat.c ./lib/openat-priv.h ./lib/pipe-safer.c ./lib/pipe2-safer.c ./lib/stdio--.h ./lib/unlinkdir.c ./lib/xtime.h ./m4/bison-i18n.m4 ./m4/chdir-safer.m4 ./m4/memcasecmp.m4 ./m4/readline.m4 ./m4/xnanosleep.m4 Copyright: 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/gethrxtime.c, ./lib/mkstemp-safer.c, ./lib/pagealign_alloc.c, ./lib/readline.c, ./lib/stdlib--.h, ./m4/fcntl-safer.m4, ./m4/pagealign_alloc.m4, ./m4/unlinkdir.m4 +Files: ./lib/gethrxtime.c ./lib/mkstemp-safer.c ./lib/pagealign_alloc.c ./lib/readline.c ./lib/stdlib--.h ./m4/fcntl-safer.m4 ./m4/pagealign_alloc.m4 ./m4/unlinkdir.m4 Copyright: 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/fts.m4 Copyright: 2005-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -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, ./m4/double-slash-root.m4 +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 ./m4/double-slash-root.m4 Copyright: 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/at-func.c, ./lib/at-func2.c, ./lib/fchmodat.c, ./lib/fstatat.c, ./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/openat-proc.c, ./lib/savewd.h, ./lib/tmpfile-safer.c, ./lib/trim.h, ./m4/flexmember.m4, ./m4/getcwd-abort-bug.m4, ./m4/ldd.m4, ./m4/mkancesdirs.m4, ./m4/xvasprintf.m4 +Files: ./lib/at-func.c ./lib/at-func2.c ./lib/fchmodat.c ./lib/fstatat.c ./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/openat-proc.c ./lib/savewd.h ./lib/tmpfile-safer.c ./lib/trim.h ./m4/flexmember.m4 ./m4/getcwd-abort-bug.m4 ./m4/ldd.m4 ./m4/mkancesdirs.m4 ./m4/xvasprintf.m4 Copyright: 2006, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/clean-temp.h Copyright: 2006, 2011-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/fchownat.c, ./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/savewd.c, ./lib/verror.c, ./lib/verror.h, ./m4/close-stream.m4 +Files: ./lib/fchownat.c ./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/savewd.c ./lib/verror.c ./lib/verror.h ./m4/close-stream.m4 Copyright: 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/gl_list.h Copyright: 2006-2012 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./build-aux/ldd.sh.in, ./build-aux/vc-list-files, ./lib/dirchownmod.c, ./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_sublist.c, ./lib/javaversion.c, ./lib/propername.c, ./lib/trim.c +Files: ./build-aux/ldd.sh.in ./build-aux/vc-list-files ./lib/dirchownmod.c ./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_sublist.c ./lib/javaversion.c ./lib/propername.c ./lib/trim.c Copyright: 2006-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/closein.c, ./lib/closein.h, ./lib/file-set.c, ./lib/float+.h, ./lib/hash-triple.c, ./lib/mpsort.c, ./lib/selinux-at.c, ./lib/selinux-at.h, ./lib/write-any-file.c, ./lib/xprintf.c, ./m4/closein.m4, ./m4/gnu-make.m4, ./m4/malloc.m4, ./m4/mpsort.m4, ./m4/realloc.m4, ./m4/write-any-file.m4 +Files: ./lib/closein.c ./lib/closein.h ./lib/file-set.c ./lib/float+.h ./lib/hash-triple.c ./lib/mpsort.c ./lib/selinux-at.c ./lib/selinux-at.h ./lib/write-any-file.c ./lib/xprintf.c ./m4/closein.m4 ./m4/gnu-make.m4 ./m4/malloc.m4 ./m4/mpsort.m4 ./m4/realloc.m4 ./m4/write-any-file.m4 Copyright: 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./m4/exponentd.m4 Copyright: 2007-2008, 2010-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/xgetgroups.c Copyright: 2007-2013 Free Software Foundation, Inc -License: GPL [REF14] +License: GPL [REF13] -Files: ./build-aux/git-version-gen, ./build-aux/mktempd, ./build-aux/pmccabe2html, ./lib/xprintf.h, ./m4/math_h.m4, ./m4/posix-shell.m4 +Files: ./build-aux/git-version-gen ./build-aux/mktempd ./build-aux/pmccabe2html ./lib/xprintf.h ./m4/math_h.m4 ./m4/posix-shell.m4 Copyright: 2007-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/git-merge-changelog.c Copyright: 2008-2010 Bruno Haible -License: GPL [REF14] +License: GPL [REF13] -Files: ./build-aux/gitlog-to-changelog, ./build-aux/useless-if-before-free, ./lib/argv-iter.c, ./lib/argv-iter.h, ./lib/obstack_printf.c, ./lib/sigpipe-die.c, ./lib/sigpipe-die.h, ./lib/xfreopen.c, ./lib/xmemdup0.c, ./lib/xmemdup0.h, ./m4/obstack-printf-posix.m4, ./m4/obstack-printf.m4 +Files: ./build-aux/gitlog-to-changelog ./build-aux/useless-if-before-free ./lib/argv-iter.c ./lib/argv-iter.h ./lib/obstack_printf.c ./lib/sigpipe-die.c ./lib/sigpipe-die.h ./lib/xfreopen.c ./lib/xmemdup0.c ./lib/xmemdup0.h ./m4/obstack-printf-posix.m4 ./m4/obstack-printf.m4 Copyright: 2008-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/c-vasnprintf.c Copyright: 2009-2013 Free Software Foundation, Inc -License: GPL [REF14] +License: GPL [REF13] -Files: ./build-aux/do-release-commit-and-tag, ./build-aux/gnu-web-doc-update, ./build-aux/update-copyright, ./lib/argp-version-etc.c, ./lib/argp-version-etc.h, ./lib/di-set.c, ./lib/dirent--.h, ./lib/dirent-safer.h, ./lib/faccessat.c, ./lib/fdutimensat.c, ./lib/freopen-safer.c, ./lib/gl_xlist.h, ./lib/gl_xoset.h, ./lib/gl_xsublist.h, ./lib/idpriv-drop.c, ./lib/idpriv-droptemp.c, ./lib/idpriv.h, ./lib/ino-map.c, ./lib/linkat.c, ./lib/mkfifoat.c, ./lib/mknodat.c, ./lib/opendir-safer.c, ./lib/pipe-filter.h, ./lib/popen-safer.c, ./lib/priv-set.c, ./lib/priv-set.h, ./lib/readlinkat.c, ./lib/renameat.c, ./lib/symlinkat.c, ./lib/unlinkat.c, ./lib/utimensat.c, ./lib/xstriconveh.c, ./m4/dirent-safer.m4, ./m4/faccessat.m4, ./m4/fdopendir.m4, ./m4/idpriv.m4, ./m4/linkat.m4, ./m4/mkfifoat.m4, ./m4/mode_t.m4, ./m4/priv-set.m4, ./m4/readlinkat.m4, ./m4/renameat.m4, ./m4/symlinkat.m4, ./m4/utimensat.m4, ./tests/init.sh +Files: ./build-aux/do-release-commit-and-tag ./build-aux/gnu-web-doc-update ./build-aux/update-copyright ./lib/argp-version-etc.c ./lib/argp-version-etc.h ./lib/di-set.c ./lib/dirent--.h ./lib/dirent-safer.h ./lib/faccessat.c ./lib/fdutimensat.c ./lib/freopen-safer.c ./lib/gl_xlist.h ./lib/gl_xoset.h ./lib/gl_xsublist.h ./lib/idpriv-drop.c ./lib/idpriv-droptemp.c ./lib/idpriv.h ./lib/ino-map.c ./lib/linkat.c ./lib/mkfifoat.c ./lib/mknodat.c ./lib/opendir-safer.c ./lib/pipe-filter.h ./lib/popen-safer.c ./lib/priv-set.c ./lib/priv-set.h ./lib/readlinkat.c ./lib/renameat.c ./lib/symlinkat.c ./lib/unlinkat.c ./lib/utimensat.c ./lib/xstriconveh.c ./m4/dirent-safer.m4 ./m4/faccessat.m4 ./m4/fdopendir.m4 ./m4/idpriv.m4 ./m4/linkat.m4 ./m4/mkfifoat.m4 ./m4/mode_t.m4 ./m4/priv-set.m4 ./m4/readlinkat.m4 ./m4/renameat.m4 ./m4/symlinkat.m4 ./m4/utimensat.m4 ./tests/init.sh Copyright: 2009-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/ftoastr.c, ./lib/ftoastr.h, ./lib/resource-ext.h +Files: ./lib/ftoastr.c ./lib/ftoastr.h ./lib/resource-ext.h Copyright: 2010-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/allocator.h, ./lib/careadlinkat.h, ./lib/dtotimespec.c, ./lib/get-rusage-as.c, ./lib/get-rusage-data.c, ./lib/timespec-add.c, ./lib/timespec-sub.c, ./lib/vma-iter.c, ./lib/vma-iter.h, ./m4/stat-size.m4 +Files: ./lib/allocator.h ./lib/careadlinkat.h ./lib/dtotimespec.c ./lib/get-rusage-as.c ./lib/get-rusage-data.c ./lib/timespec-add.c ./lib/timespec-sub.c ./lib/vma-iter.c ./lib/vma-iter.h ./m4/stat-size.m4 Copyright: 2011-2013 Free Software Foundation, Inc. -License: GPL [REF14] +License: GPL [REF13] -Files: ./lib/c-snprintf.h, ./lib/c-vsnprintf.h, ./lib/pipe-filter-aux.c, ./lib/system-quote.c +Files: ./lib/c-snprintf.h ./lib/c-vsnprintf.h ./lib/pipe-filter-aux.c ./lib/system-quote.c Copyright: 2012-2013 Free Software Foundation, Inc -License: GPL [REF14] +License: GPL [REF13] Files: ./lib/acl-errno-valid.c Copyright: 2013 Free Software Foundation, Inc -License: GPL [REF14] +License: GPL [REF13] Files: ./config/argz.mk Copyright: 1995-1998, 2000-2002, 2006, 2009-2013 Free Software Foundation, Inc. @@ -1237,15 +1251,15 @@ License: GPL-2+ Files: ./build-aux/mdate-sh Copyright: 1995-2013 Free Software Foundation, Inc. -License: GPL-2+ [REF15] +License: GPL-2+ [REF14] -Files: ./build-aux/compile, ./build-aux/depcomp +Files: ./build-aux/compile ./build-aux/depcomp Copyright: 1999-2013 Free Software Foundation, Inc. -License: GPL-2+ [REF15] +License: GPL-2+ [REF14] Files: ./build-aux/config.guess Copyright: 1992-2013 Free Software Foundation, Inc. -License: GPL-2+ and other [REF16] +License: GPL-2+ and other [REF15] Files: ./tests/test-regex.c Copyright: 1996-2001, 2003-2013 Free Software Foundation, Inc @@ -1255,7 +1269,7 @@ Files: ./tests/test-gc-pbkdf2-sha1.c Copyright: 2002, 2003, 2004, 2005, 2007, 2010-2013 Free Software Foundation, Inc. License: GPL-3+ -Files: ./tests/havelib/rpathlx/configure.ac, ./tests/havelib/rpathly/configure.ac, ./tests/havelib/rpathlyx/configure.ac, ./tests/havelib/rpathlz/configure.ac, ./tests/havelib/rpathlzyx/configure.ac, ./tests/havelib/rpathx/configure.ac, ./tests/havelib/rpathy/configure.ac, ./tests/havelib/rpathz/configure.ac +Files: ./tests/havelib/rpathlx/configure.ac ./tests/havelib/rpathly/configure.ac ./tests/havelib/rpathlyx/configure.ac ./tests/havelib/rpathlz/configure.ac ./tests/havelib/rpathlzyx/configure.ac ./tests/havelib/rpathx/configure.ac ./tests/havelib/rpathy/configure.ac ./tests/havelib/rpathz/configure.ac Copyright: 2002-2003, 2005, 2010-2013 Free Software Foundation, Inc. License: GPL-3+ @@ -1267,7 +1281,7 @@ Files: ./tests/test-gc-rijndael.c Copyright: 2005, 2010-2013 Free Software Foundation, Inc. License: GPL-3+ -Files: ./tests/test-gc-arcfour.c, ./tests/test-gc-arctwo.c, ./tests/test-gc-des.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-sha1.c, ./tests/test-md2.c, ./tests/test-md4.c +Files: ./tests/test-gc-arcfour.c ./tests/test-gc-arctwo.c ./tests/test-gc-des.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-sha1.c ./tests/test-md2.c ./tests/test-md4.c Copyright: 2005, 2010-2013 Free Software Foundation, Inc. License: GPL-3+ @@ -1283,11 +1297,11 @@ Files: ./tests/unictype/test-categ_LC.c Copyright: 2007 Free Software Foundation, Inc License: GPL-3+ -Files: ./tests/unictype/test-pr_case_ignorable.c, ./tests/unictype/test-pr_cased.c, ./tests/unictype/test-pr_changes_when_casefolded.c, ./tests/unictype/test-pr_changes_when_casemapped.c, ./tests/unictype/test-pr_changes_when_lowercased.c, ./tests/unictype/test-pr_changes_when_titlecased.c, ./tests/unictype/test-pr_changes_when_uppercased.c +Files: ./tests/unictype/test-pr_case_ignorable.c ./tests/unictype/test-pr_cased.c ./tests/unictype/test-pr_changes_when_casefolded.c ./tests/unictype/test-pr_changes_when_casemapped.c ./tests/unictype/test-pr_changes_when_lowercased.c ./tests/unictype/test-pr_changes_when_titlecased.c ./tests/unictype/test-pr_changes_when_uppercased.c Copyright: 2007 Free Software Foundation, Inc. License: GPL-3+ -Files: ./tests/test-flock.c, ./tests/test-parse-datetime.c, ./tests/test-quotearg-simple.c, ./tests/test-quotearg.h +Files: ./tests/test-flock.c ./tests/test-parse-datetime.c ./tests/test-quotearg-simple.c ./tests/test-quotearg.h Copyright: 2008-2013 Free Software Foundation, Inc. License: GPL-3+ @@ -1295,7 +1309,7 @@ Files: ./tests/test-statat.c Copyright: 2009-2013 Free Software Foundation, Inc License: GPL-3+ -Files: ./tests/test-getcwd.c, ./tests/test-link.c, ./tests/test-mkfifoat.c, ./tests/test-spawn-pipe-child.c, ./tests/test-spawn-pipe-main.c +Files: ./tests/test-getcwd.c ./tests/test-link.c ./tests/test-mkfifoat.c ./tests/test-spawn-pipe-child.c ./tests/test-spawn-pipe-main.c Copyright: 2009-2013 Free Software Foundation, Inc. License: GPL-3+ @@ -1303,181 +1317,181 @@ Files: ./tests/unigbrk/test-uc-gbrk-prop.h Copyright: 2010 Free Software Foundation, Inc. License: GPL-3+ -Files: ./tests/test-logbf.c, ./tests/test-logbl.c +Files: ./tests/test-logbf.c ./tests/test-logbl.c Copyright: 2010-2013 Free Software Foundation, Inc License: GPL-3+ -Files: ./tests/test-round-ieee.c, ./tests/test-roundf-ieee.c, ./tests/test-roundl-ieee.c +Files: ./tests/test-round-ieee.c ./tests/test-roundf-ieee.c ./tests/test-roundl-ieee.c Copyright: 2010-2013 Free Software Foundation, Inc. License: GPL-3+ -Files: ./tests/test-c-snprintf.c, ./tests/test-c-vasprintf.c, ./tests/test-c-vsnprintf.c, ./tests/test-c-xvasprintf.c +Files: ./tests/test-c-snprintf.c ./tests/test-c-vasprintf.c ./tests/test-c-vsnprintf.c ./tests/test-c-xvasprintf.c Copyright: 2011-2013 Free Software Foundation, Inc License: GPL-3+ -Files: ./tests/test-fclose.c, ./tests/test-fgetc.c, ./tests/test-fputc.c, ./tests/test-fread.c, ./tests/test-fwrite.c, ./tests/test-perror2.c +Files: ./tests/test-fclose.c ./tests/test-fgetc.c ./tests/test-fputc.c ./tests/test-fread.c ./tests/test-fwrite.c ./tests/test-perror2.c Copyright: 2011-2013 Free Software Foundation, Inc. License: GPL-3+ -Files: ./tests/randomd.c, ./tests/randomf.c, ./tests/randoml.c, ./tests/test-count-leading-zeros.c, ./tests/test-getrusage.c, ./tests/test-ilogb.c, ./tests/test-ilogb.h, ./tests/test-ilogbf.c, ./tests/test-ilogbl.c, ./tests/test-localeconv.c, ./tests/test-log10-ieee.c, ./tests/test-log10-ieee.h, ./tests/test-log10.h, ./tests/test-log10f-ieee.c, ./tests/test-log10l-ieee.c, ./tests/test-logb-ieee.c, ./tests/test-logb-ieee.h, ./tests/test-logb.h, ./tests/test-logbf-ieee.c, ./tests/test-logbl-ieee.c, ./tests/test-sh-quote.c, ./tests/test-sys_resource.c, ./tests/test-system-quote-child.c, ./tests/test-system-quote-main.c +Files: ./tests/randomd.c ./tests/randomf.c ./tests/randoml.c ./tests/test-count-leading-zeros.c ./tests/test-getrusage.c ./tests/test-ilogb.c ./tests/test-ilogb.h ./tests/test-ilogbf.c ./tests/test-ilogbl.c ./tests/test-localeconv.c ./tests/test-log10-ieee.c ./tests/test-log10-ieee.h ./tests/test-log10.h ./tests/test-log10f-ieee.c ./tests/test-log10l-ieee.c ./tests/test-logb-ieee.c ./tests/test-logb-ieee.h ./tests/test-logb.h ./tests/test-logbf-ieee.c ./tests/test-logbl-ieee.c ./tests/test-sh-quote.c ./tests/test-sys_resource.c ./tests/test-system-quote-child.c ./tests/test-system-quote-main.c Copyright: 2012-2013 Free Software Foundation, Inc License: GPL-3+ 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, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-argmatch.c Copyright: 1990, 1998-1999, 2001-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-xstrtol.c Copyright: 1995-1996, 1998-2001, 2003-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-filenamecat.c Copyright: 1996-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/uniname/test-uninames.c Copyright: 2000-2003, 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./build-aux/x-to-1.in Copyright: 2001-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./config/srclistvars.sh Copyright: 2002, 2003, 2004 2005, 2006, 2008 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-c-stack.c Copyright: 2002, 2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./config/srclist-update Copyright: 2002-2003, 2005, 2007-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-stdbool.c Copyright: 2002-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./MODULES.html.sh, ./build-aux/move-if-change, ./gnulib-tool, ./posix-modules +Files: ./MODULES.html.sh ./build-aux/move-if-change ./gnulib-tool ./posix-modules Copyright: 2002-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-stpncpy.c Copyright: 2003, 2008-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./build-aux/bootstrap Copyright: 2003-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/test-fpending.c, ./tests/test-memmem.c, ./tests/test-strstr.c +Files: ./tests/test-fpending.c ./tests/test-memmem.c ./tests/test-strstr.c Copyright: 2004, 2007-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-base64.c Copyright: 2004, 2008-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-iconvme.c Copyright: 2004-2005, 2009-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/test-alloca-opt.c, ./tests/test-gettimeofday.c, ./tests/test-malloca.c +Files: ./tests/test-alloca-opt.c ./tests/test-gettimeofday.c ./tests/test-malloca.c Copyright: 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/test-binary-io.c, ./tests/test-c-ctype.c +Files: ./tests/test-binary-io.c ./tests/test-c-ctype.c Copyright: 2005, 2007-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/test-lock.c, ./tests/test-sha1.c, ./tests/test-tls.c +Files: ./tests/test-lock.c ./tests/test-sha1.c ./tests/test-tls.c Copyright: 2005, 2008-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/test-getpass.c, ./tests/test-md5.c, ./tests/test-verify.c +Files: ./tests/test-getpass.c ./tests/test-md5.c ./tests/test-verify.c Copyright: 2005, 2009-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/test-arcfour.c, ./tests/test-arctwo.c, ./tests/test-hmac-md5.c, ./tests/test-hmac-sha1.c, ./tests/test-rijndael.c +Files: ./tests/test-arcfour.c ./tests/test-arctwo.c ./tests/test-hmac-md5.c ./tests/test-hmac-sha1.c ./tests/test-rijndael.c Copyright: 2005, 2010-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./check-module, ./tests/test-dirname.c +Files: ./check-module ./tests/test-dirname.c Copyright: 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-crc.c Copyright: 2005-2007, 2010-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-inttypes.c Copyright: 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-read-file.c Copyright: 2006-2007, 2010-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./build-aux/bootstrap.conf, ./tests/test-argp-2.sh, ./tests/test-argp.c, ./tests/test-array_list.c, ./tests/test-array_oset.c, ./tests/test-avltree_list.c, ./tests/test-avltree_oset.c, ./tests/test-avltreehash_list.c, ./tests/test-carray_list.c, ./tests/test-getaddrinfo.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, ./tests/test-stdint.c +Files: ./build-aux/bootstrap.conf ./tests/test-argp-2.sh ./tests/test-argp.c ./tests/test-array_list.c ./tests/test-array_oset.c ./tests/test-avltree_list.c ./tests/test-avltree_oset.c ./tests/test-avltreehash_list.c ./tests/test-carray_list.c ./tests/test-getaddrinfo.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 ./tests/test-stdint.c Copyright: 2006-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/unicase/test-cased.c, ./tests/unicase/test-ignorable.c, ./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 +Files: ./tests/unicase/test-cased.c ./tests/unicase/test-ignorable.c ./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 Copyright: 2007 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/test-arpa_inet.c, ./tests/test-atexit.c, ./tests/test-fcntl-h.c, ./tests/test-fflush.c, ./tests/test-fprintf-posix2.c, ./tests/test-fseterr.c, ./tests/test-isnanl-nolibm.c, ./tests/test-locale.c, ./tests/test-netinet_in.c, ./tests/test-printf-posix2.c, ./tests/test-search.c, ./tests/test-stdio.c, ./tests/test-stdlib.c, ./tests/test-string.c, ./tests/test-strings.c, ./tests/test-sys_socket.c, ./tests/test-sys_time.c, ./tests/test-sysexits.c, ./tests/test-time.c, ./tests/test-unistd.c, ./tests/unicase/test-predicate-part2.h, ./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 +Files: ./tests/test-arpa_inet.c ./tests/test-atexit.c ./tests/test-fcntl-h.c ./tests/test-fflush.c ./tests/test-fprintf-posix2.c ./tests/test-fseterr.c ./tests/test-isnanl-nolibm.c ./tests/test-locale.c ./tests/test-netinet_in.c ./tests/test-printf-posix2.c ./tests/test-search.c ./tests/test-stdio.c ./tests/test-stdlib.c ./tests/test-string.c ./tests/test-strings.c ./tests/test-sys_socket.c ./tests/test-sys_time.c ./tests/test-sysexits.c ./tests/test-time.c ./tests/test-unistd.c ./tests/unicase/test-predicate-part2.h ./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, 2009-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-netdb.c Copyright: 2007-2008, 2010-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./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_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-decdigit.c, ./tests/unictype/test-digit.c, ./tests/unictype/test-mirror.c, ./tests/unictype/test-numeric.c, ./tests/unictype/test-pr_byname.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 +Files: ./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_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-decdigit.c ./tests/unictype/test-digit.c ./tests/unictype/test-mirror.c ./tests/unictype/test-numeric.c ./tests/unictype/test-pr_byname.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 Copyright: 2007-2009 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/unictype/test-bidi_name.c, ./tests/unictype/test-bidi_of.c, ./tests/unictype/test-bidi_test.c +Files: ./tests/unictype/test-bidi_name.c ./tests/unictype/test-bidi_of.c ./tests/unictype/test-bidi_test.c Copyright: 2007-2009, 2011 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/unictype/test-bidi_byname.c, ./tests/unictype/test-categ_byname.c +Files: ./tests/unictype/test-bidi_byname.c ./tests/unictype/test-categ_byname.c Copyright: 2007-2011 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./tests/test-ftell.c Copyright: 2007-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/nan.h, ./tests/test-bitrotate.c, ./tests/test-byteswap.c, ./tests/test-c-strcasecmp.c, ./tests/test-c-strcasestr.c, ./tests/test-c-strncasecmp.c, ./tests/test-c-strstr.c, ./tests/test-canonicalize-lgpl.c, ./tests/test-canonicalize.c, ./tests/test-ceilf1.c, ./tests/test-ceilf2.c, ./tests/test-ceill.c, ./tests/test-closein.c, ./tests/test-count-one-bits.c, ./tests/test-dprintf-posix.c, ./tests/test-fbufmode.c, ./tests/test-fcntl-safer.c, ./tests/test-floorf1.c, ./tests/test-floorf2.c, ./tests/test-floorl.c, ./tests/test-fopen-safer.c, ./tests/test-fopen.c, ./tests/test-fopen.h, ./tests/test-fprintf-posix.c, ./tests/test-fprintf-posix.h, ./tests/test-fpurge.c, ./tests/test-freadable.c, ./tests/test-freadahead.c, ./tests/test-freading.c, ./tests/test-freadptr.c, ./tests/test-freadptr2.c, ./tests/test-freadseek.c, ./tests/test-freopen.c, ./tests/test-frexp.c, ./tests/test-frexpl.c, ./tests/test-fseek.c, ./tests/test-fseeko.c, ./tests/test-fstrcmp.c, ./tests/test-ftello.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-isfinite.c, ./tests/test-isinf.c, ./tests/test-isnan.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-isnanl.h, ./tests/test-ldexpl.c, ./tests/test-localename.c, ./tests/test-lseek.c, ./tests/test-math.c, ./tests/test-mbmemcasecmp.c, ./tests/test-mbmemcasecmp.h, ./tests/test-mbmemcasecoll.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-open.c, ./tests/test-open.h, ./tests/test-printf-frexp.c, ./tests/test-printf-frexpl.c, ./tests/test-printf-posix.c, ./tests/test-printf-posix.h, ./tests/test-round1.c, ./tests/test-round2.c, ./tests/test-roundf1.c, ./tests/test-roundl.c, ./tests/test-signbit.c, ./tests/test-sleep.c, ./tests/test-snprintf-posix.c, ./tests/test-snprintf-posix.h, ./tests/test-snprintf.c, ./tests/test-sprintf-posix.c, ./tests/test-sprintf-posix.h, ./tests/test-stat-time.c, ./tests/test-strcasestr.c, ./tests/test-strerror.c, ./tests/test-striconv.c, ./tests/test-striconveh.c, ./tests/test-striconveha.c, ./tests/test-sys_select.c, ./tests/test-sys_stat.c, ./tests/test-trunc1.c, ./tests/test-trunc2.c, ./tests/test-truncf1.c, ./tests/test-truncf2.c, ./tests/test-truncl.c, ./tests/test-vasnprintf-posix.c, ./tests/test-vasnprintf-posix2.c, ./tests/test-vasnprintf.c, ./tests/test-vasprintf-posix.c, ./tests/test-vasprintf.c, ./tests/test-vdprintf-posix.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-wchar.c, ./tests/test-wcwidth.c, ./tests/test-xfprintf-posix.c, ./tests/test-xprintf-posix.c, ./tests/test-xvasprintf.c, ./tests/test-yesno.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-u16-strconv-to-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-u32-strconv-to-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/uniconv/test-u8-strconv-to-enc.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-u16-vsnprintf1.c, ./tests/unistdio/test-u16-vsprintf1.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-u32-vsnprintf1.c, ./tests/unistdio/test-u32-vsprintf1.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-u8-vsnprintf1.c, ./tests/unistdio/test-u8-vsprintf1.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/unistdio/test-ulc-vsnprintf1.c, ./tests/unistdio/test-ulc-vsprintf1.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 +Files: ./tests/nan.h ./tests/test-bitrotate.c ./tests/test-byteswap.c ./tests/test-c-strcasecmp.c ./tests/test-c-strcasestr.c ./tests/test-c-strncasecmp.c ./tests/test-c-strstr.c ./tests/test-canonicalize-lgpl.c ./tests/test-canonicalize.c ./tests/test-ceilf1.c ./tests/test-ceilf2.c ./tests/test-ceill.c ./tests/test-closein.c ./tests/test-count-one-bits.c ./tests/test-dprintf-posix.c ./tests/test-fbufmode.c ./tests/test-fcntl-safer.c ./tests/test-floorf1.c ./tests/test-floorf2.c ./tests/test-floorl.c ./tests/test-fopen-safer.c ./tests/test-fopen.c ./tests/test-fopen.h ./tests/test-fprintf-posix.c ./tests/test-fprintf-posix.h ./tests/test-fpurge.c ./tests/test-freadable.c ./tests/test-freadahead.c ./tests/test-freading.c ./tests/test-freadptr.c ./tests/test-freadptr2.c ./tests/test-freadseek.c ./tests/test-freopen.c ./tests/test-frexp.c ./tests/test-frexpl.c ./tests/test-fseek.c ./tests/test-fseeko.c ./tests/test-fstrcmp.c ./tests/test-ftello.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-isfinite.c ./tests/test-isinf.c ./tests/test-isnan.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-isnanl.h ./tests/test-ldexpl.c ./tests/test-localename.c ./tests/test-lseek.c ./tests/test-math.c ./tests/test-mbmemcasecmp.c ./tests/test-mbmemcasecmp.h ./tests/test-mbmemcasecoll.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-open.c ./tests/test-open.h ./tests/test-printf-frexp.c ./tests/test-printf-frexpl.c ./tests/test-printf-posix.c ./tests/test-printf-posix.h ./tests/test-round1.c ./tests/test-round2.c ./tests/test-roundf1.c ./tests/test-roundl.c ./tests/test-signbit.c ./tests/test-sleep.c ./tests/test-snprintf-posix.c ./tests/test-snprintf-posix.h ./tests/test-snprintf.c ./tests/test-sprintf-posix.c ./tests/test-sprintf-posix.h ./tests/test-stat-time.c ./tests/test-strcasestr.c ./tests/test-strerror.c ./tests/test-striconv.c ./tests/test-striconveh.c ./tests/test-striconveha.c ./tests/test-sys_select.c ./tests/test-sys_stat.c ./tests/test-trunc1.c ./tests/test-trunc2.c ./tests/test-truncf1.c ./tests/test-truncf2.c ./tests/test-truncl.c ./tests/test-vasnprintf-posix.c ./tests/test-vasnprintf-posix2.c ./tests/test-vasnprintf.c ./tests/test-vasprintf-posix.c ./tests/test-vasprintf.c ./tests/test-vdprintf-posix.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-wchar.c ./tests/test-wcwidth.c ./tests/test-xfprintf-posix.c ./tests/test-xprintf-posix.c ./tests/test-xvasprintf.c ./tests/test-yesno.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-u16-strconv-to-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-u32-strconv-to-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/uniconv/test-u8-strconv-to-enc.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-u16-vsnprintf1.c ./tests/unistdio/test-u16-vsprintf1.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-u32-vsnprintf1.c ./tests/unistdio/test-u32-vsprintf1.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-u8-vsnprintf1.c ./tests/unistdio/test-u8-vsprintf1.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/unistdio/test-ulc-vsnprintf1.c ./tests/unistdio/test-ulc-vsprintf1.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-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/test-argv-iter.c, ./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-fflush2.c, ./tests/test-file-has-acl.c, ./tests/test-filevercmp.c, ./tests/test-func.c, ./tests/test-getdtablesize.c, ./tests/test-gethostname.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-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-perror.c, ./tests/test-poll.c, ./tests/test-posix_spawn1.c, ./tests/test-posix_spawn2.c, ./tests/test-posix_spawn3.c, ./tests/test-quotearg.c, ./tests/test-random_r.c, ./tests/test-rawmemchr.c, ./tests/test-sameacls.c, ./tests/test-sched.c, ./tests/test-select-fd.c, ./tests/test-select-stdin.c, ./tests/test-select.c, ./tests/test-set-mode-acl.c, ./tests/test-sigaction.c, ./tests/test-sigpipe.c, ./tests/test-sockets.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-vc-list-files-git.sh, ./tests/test-wcrtomb.c, ./tests/test-wcsnrtombs.c, ./tests/test-wcsrtombs.c, ./tests/test-xmemdup0.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 +Files: ./tests/test-argv-iter.c ./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-fflush2.c ./tests/test-file-has-acl.c ./tests/test-filevercmp.c ./tests/test-func.c ./tests/test-getdtablesize.c ./tests/test-gethostname.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-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-perror.c ./tests/test-poll.c ./tests/test-posix_spawn1.c ./tests/test-posix_spawn2.c ./tests/test-posix_spawn3.c ./tests/test-quotearg.c ./tests/test-random_r.c ./tests/test-rawmemchr.c ./tests/test-sameacls.c ./tests/test-sched.c ./tests/test-select-fd.c ./tests/test-select-stdin.c ./tests/test-select.c ./tests/test-set-mode-acl.c ./tests/test-sigaction.c ./tests/test-sigpipe.c ./tests/test-sockets.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-vc-list-files-git.sh ./tests/test-wcrtomb.c ./tests/test-wcsnrtombs.c ./tests/test-wcsrtombs.c ./tests/test-xmemdup0.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-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -Files: ./tests/unicase/test-uc_tolower.c, ./tests/unicase/test-uc_totitle.c, ./tests/unicase/test-uc_toupper.c +Files: ./tests/unicase/test-uc_tolower.c ./tests/unicase/test-uc_totitle.c ./tests/unicase/test-uc_toupper.c Copyright: 2009 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] -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-priv-set.c, ./tests/test-stddef.c, ./tests/test-symlinkat.c, ./tests/test-sys_utsname.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-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 +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-priv-set.c ./tests/test-stddef.c ./tests/test-symlinkat.c ./tests/test-sys_utsname.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-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-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] Files: ./build-aux/ncftpput-ftp Copyright: 2008-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF18] +License: GPL-3+ [REF17] Files: ./tests/test-fsync.c Copyright: 2008-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF19] +License: GPL-3+ [REF18] Files: ./tests/havelib/Makefile.am Copyright: 1995-1997, 2001-2003, 2006, 2009-2013 Free Software Foundation, Inc. @@ -1499,39 +1513,39 @@ Files: ./tests/unictype/test-categ_longname.c Copyright: 2007-2009, 2011 Free Software Foundation, Inc License: GPL-3+ -Files: ./tests/test-ceil1.c, ./tests/test-ceil2.c, ./tests/test-floor1.c, ./tests/test-floor2.c, ./tests/test-frexpf.c, ./tests/test-ftell3.c, ./tests/test-ftello3.c, ./tests/test-iconv-h.c, ./tests/test-iswblank.c, ./tests/test-ldexp.h, ./tests/test-ldexpf.c, ./tests/test-strerror_r.c, ./tests/test-wctype-h.c +Files: ./tests/test-ceil1.c ./tests/test-ceil2.c ./tests/test-floor1.c ./tests/test-floor2.c ./tests/test-frexpf.c ./tests/test-ftell3.c ./tests/test-ftello3.c ./tests/test-iconv-h.c ./tests/test-iswblank.c ./tests/test-ldexp.h ./tests/test-ldexpf.c ./tests/test-strerror_r.c ./tests/test-wctype-h.c Copyright: 2007-2013 Free Software Foundation, Inc. License: GPL-3+ -Files: ./tests/test-mbrtowc-w32.c, ./tests/test-random.c, ./tests/test-wcrtomb-w32.c +Files: ./tests/test-mbrtowc-w32.c ./tests/test-random.c ./tests/test-wcrtomb-w32.c Copyright: 2008-2013 Free Software Foundation, Inc License: GPL-3+ -Files: ./tests/test-fdatasync.c, ./tests/test-getdomainname.c, ./tests/test-memcasecmp.c, ./tests/test-memcoll.c, ./tests/test-select.h, ./tests/unistr/test-chr.h, ./tests/unistr/test-cmp.h, ./tests/unistr/test-cmp2.h, ./tests/unistr/test-strchr.h +Files: ./tests/test-fdatasync.c ./tests/test-getdomainname.c ./tests/test-memcasecmp.c ./tests/test-memcoll.c ./tests/test-select.h ./tests/unistr/test-chr.h ./tests/unistr/test-cmp.h ./tests/unistr/test-cmp2.h ./tests/unistr/test-strchr.h Copyright: 2008-2013 Free Software Foundation, Inc. License: GPL-3+ -Files: ./tests/nap.h, ./tests/signature.h, ./tests/test-chown.c, ./tests/test-chown.h, ./tests/test-cloexec.c, ./tests/test-ctype.c, ./tests/test-dirent.c, ./tests/test-dprintf-posix2.c, ./tests/test-dup-safer.c, ./tests/test-duplocale.c, ./tests/test-fchownat.c, ./tests/test-fcntl.c, ./tests/test-forkpty.c, ./tests/test-fprintf-posix3.c, ./tests/test-futimens.h, ./tests/test-getcwd-lgpl.c, ./tests/test-langinfo.c, ./tests/test-lchown.c, ./tests/test-lchown.h, ./tests/test-link.h, ./tests/test-lutimens.h, ./tests/test-mkdir.h, ./tests/test-mkfifo.c, ./tests/test-mkfifo.h, ./tests/test-mknod.c, ./tests/test-nanosleep.c, ./tests/test-nl_langinfo.c, ./tests/test-openpty.c, ./tests/test-pread.c, ./tests/test-pwrite.c, ./tests/test-readlinkat.c, ./tests/test-rename.c, ./tests/test-rename.h, ./tests/test-setenv.c, ./tests/test-signal-h.c, ./tests/test-spawn.c, ./tests/test-stdalign.c, ./tests/test-sys_file.c, ./tests/test-sys_ioctl.c, ./tests/test-sys_wait.c, ./tests/test-unsetenv.c, ./tests/test-userspec.c, ./tests/test-usleep.c, ./tests/test-utimens-common.h, ./tests/test-utimens.h, ./tests/test-xalloc-die.c, ./tests/test-xalloc-die.sh, ./tests/unigbrk/test-ulc-grapheme-breaks.c +Files: ./tests/nap.h ./tests/signature.h ./tests/test-chown.c ./tests/test-chown.h ./tests/test-cloexec.c ./tests/test-ctype.c ./tests/test-dirent.c ./tests/test-dprintf-posix2.c ./tests/test-dup-safer.c ./tests/test-duplocale.c ./tests/test-fchownat.c ./tests/test-fcntl.c ./tests/test-forkpty.c ./tests/test-fprintf-posix3.c ./tests/test-futimens.h ./tests/test-getcwd-lgpl.c ./tests/test-langinfo.c ./tests/test-lchown.c ./tests/test-lchown.h ./tests/test-link.h ./tests/test-lutimens.h ./tests/test-mkdir.h ./tests/test-mkfifo.c ./tests/test-mkfifo.h ./tests/test-mknod.c ./tests/test-nanosleep.c ./tests/test-nl_langinfo.c ./tests/test-openpty.c ./tests/test-pread.c ./tests/test-pwrite.c ./tests/test-readlinkat.c ./tests/test-rename.c ./tests/test-rename.h ./tests/test-setenv.c ./tests/test-signal-h.c ./tests/test-spawn.c ./tests/test-stdalign.c ./tests/test-sys_file.c ./tests/test-sys_ioctl.c ./tests/test-sys_wait.c ./tests/test-unsetenv.c ./tests/test-userspec.c ./tests/test-usleep.c ./tests/test-utimens-common.h ./tests/test-utimens.h ./tests/test-xalloc-die.c ./tests/test-xalloc-die.sh ./tests/unigbrk/test-ulc-grapheme-breaks.c Copyright: 2009-2013 Free Software Foundation, Inc. License: GPL-3+ -Files: ./tests/test-cbrtf.c, ./tests/test-cbrtl.c, ./tests/test-exp2.c, ./tests/test-exp2f.c, ./tests/test-exp2l.c, ./tests/test-expm1.c, ./tests/test-expm1f.c, ./tests/test-expm1l.c, ./tests/test-fabsl.c, ./tests/test-fmodl.c, ./tests/test-hypotf.c, ./tests/test-hypotl.c, ./tests/test-log10l.c, ./tests/test-log1pf.c, ./tests/test-log1pl.c, ./tests/test-log2.c, ./tests/test-log2f.c, ./tests/test-log2l.c, ./tests/test-modfl.c, ./tests/test-remainderf.c, ./tests/test-remainderl.c +Files: ./tests/test-cbrtf.c ./tests/test-cbrtl.c ./tests/test-exp2.c ./tests/test-exp2f.c ./tests/test-exp2l.c ./tests/test-expm1.c ./tests/test-expm1f.c ./tests/test-expm1l.c ./tests/test-fabsl.c ./tests/test-fmodl.c ./tests/test-hypotf.c ./tests/test-hypotl.c ./tests/test-log10l.c ./tests/test-log1pf.c ./tests/test-log1pl.c ./tests/test-log2.c ./tests/test-log2f.c ./tests/test-log2l.c ./tests/test-modfl.c ./tests/test-remainderf.c ./tests/test-remainderl.c Copyright: 2010-2013 Free Software Foundation, Inc License: GPL-3+ -Files: ./tests/minus-zero.h, ./tests/test-_Exit.c, ./tests/test-acos.c, ./tests/test-acosf.c, ./tests/test-acosl.c, ./tests/test-arpa_inet-c++.cc, ./tests/test-asin.c, ./tests/test-asinf.c, ./tests/test-asinl.c, ./tests/test-astrxfrm.c, ./tests/test-atan.c, ./tests/test-atan2.c, ./tests/test-atan2f.c, ./tests/test-atanf.c, ./tests/test-atanl.c, ./tests/test-calloc-gnu.c, ./tests/test-cbrt.c, ./tests/test-ceil-ieee.c, ./tests/test-ceilf-ieee.c, ./tests/test-ceill-ieee.c, ./tests/test-copysign.c, ./tests/test-copysignf.c, ./tests/test-copysignl.c, ./tests/test-cos.c, ./tests/test-cosf.c, ./tests/test-cosh.c, ./tests/test-coshf.c, ./tests/test-cosl.c, ./tests/test-di-set.c, ./tests/test-dirent-c++.cc, ./tests/test-erf.c, ./tests/test-erfc.c, ./tests/test-exclude8.sh, ./tests/test-exp.c, ./tests/test-expf.c, ./tests/test-expl.c, ./tests/test-fabs.c, ./tests/test-fabsf.c, ./tests/test-fcntl-h-c++.cc, ./tests/test-floor-ieee.c, ./tests/test-floorf-ieee.c, ./tests/test-floorl-ieee.c, ./tests/test-fmod.c, ./tests/test-fmodf.c, ./tests/test-getlogin.c, ./tests/test-getlogin_r.c, ./tests/test-glob-c++.cc, ./tests/test-hypot.c, ./tests/test-iconv-h-c++.cc, ./tests/test-ino-map.c, ./tests/test-inttostr.c, ./tests/test-j0.c, ./tests/test-j1.c, ./tests/test-jn.c, ./tests/test-langinfo-c++.cc, ./tests/test-ldexp.c, ./tests/test-lgamma.c, ./tests/test-locale-c++.cc, ./tests/test-locale-c++2.cc, ./tests/test-log.c, ./tests/test-log10.c, ./tests/test-log10f.c, ./tests/test-log1p.c, ./tests/test-logb.c, ./tests/test-logf.c, ./tests/test-login_tty.c, ./tests/test-logl.c, ./tests/test-malloc-gnu.c, ./tests/test-math-c++.cc, ./tests/test-math-c++2.cc, ./tests/test-modf.c, ./tests/test-modff.c, ./tests/test-net_if.c, ./tests/test-nextafter.c, ./tests/test-poll-h-c++.cc, ./tests/test-poll-h.c, ./tests/test-pow.c, ./tests/test-powf.c, ./tests/test-ptsname.c, ./tests/test-ptsname_r.c, ./tests/test-pty-c++.cc, ./tests/test-realloc-gnu.c, ./tests/test-regex-quote.c, ./tests/test-remainder.c, ./tests/test-rint.c, ./tests/test-rintf.c, ./tests/test-rintl.c, ./tests/test-search-c++.cc, ./tests/test-signal-h-c++.cc, ./tests/test-signal-h-c++2.cc, ./tests/test-sin.c, ./tests/test-sinf.c, ./tests/test-sinh.c, ./tests/test-sinhf.c, ./tests/test-sinl.c, ./tests/test-spawn-c++.cc, ./tests/test-sqrt.c, ./tests/test-sqrtf.c, ./tests/test-sqrtl.c, ./tests/test-stdio-c++.cc, ./tests/test-stdio-c++2.cc, ./tests/test-stdlib-c++.cc, ./tests/test-stdlib-c++2.cc, ./tests/test-string-c++.cc, ./tests/test-string-c++2.cc, ./tests/test-strncat.c, ./tests/test-strnlen.c, ./tests/test-sys_ioctl-c++.cc, ./tests/test-sys_select-c++.cc, ./tests/test-sys_socket-c++.cc, ./tests/test-sys_stat-c++.cc, ./tests/test-sys_time-c++.cc, ./tests/test-sys_wait-c++.cc, ./tests/test-sys_wait.h, ./tests/test-tan.c, ./tests/test-tanf.c, ./tests/test-tanh.c, ./tests/test-tanhf.c, ./tests/test-tanl.c, ./tests/test-termios-c++.cc, ./tests/test-termios.c, ./tests/test-time-c++.cc, ./tests/test-time-c++2.cc, ./tests/test-trunc-ieee.c, ./tests/test-truncf-ieee.c, ./tests/test-truncl-ieee.c, ./tests/test-ttyname_r.c, ./tests/test-unistd-c++.cc, ./tests/test-vasnprintf-posix3.c, ./tests/test-wchar-c++.cc, ./tests/test-wctype-h-c++.cc, ./tests/test-y0.c, ./tests/test-y1.c, ./tests/test-yn.c, ./tests/unigbrk/test-uc-gbrk-prop.c, ./tests/unistr/test-cpy-alloc.h, ./tests/unistr/test-cpy.h, ./tests/unistr/test-move.h, ./tests/unistr/test-set.h, ./tests/unistr/test-stpcpy.h, ./tests/unistr/test-stpncpy.h, ./tests/unistr/test-strcat.h, ./tests/unistr/test-strcmp.h, ./tests/unistr/test-strcpy.h, ./tests/unistr/test-strdup.h, ./tests/unistr/test-strncat.h, ./tests/unistr/test-strncmp.h, ./tests/unistr/test-strncpy.h, ./tests/unistr/test-strnlen.h, ./tests/unistr/test-u16-check.c, ./tests/unistr/test-u16-chr.c, ./tests/unistr/test-u16-cmp.c, ./tests/unistr/test-u16-cmp2.c, ./tests/unistr/test-u16-cpy-alloc.c, ./tests/unistr/test-u16-cpy.c, ./tests/unistr/test-u16-mblen.c, ./tests/unistr/test-u16-mbsnlen.c, ./tests/unistr/test-u16-mbtouc-unsafe.c, ./tests/unistr/test-u16-mbtouc.c, ./tests/unistr/test-u16-mbtouc.h, ./tests/unistr/test-u16-mbtoucr.c, ./tests/unistr/test-u16-move.c, ./tests/unistr/test-u16-next.c, ./tests/unistr/test-u16-prev.c, ./tests/unistr/test-u16-set.c, ./tests/unistr/test-u16-stpcpy.c, ./tests/unistr/test-u16-stpncpy.c, ./tests/unistr/test-u16-strcat.c, ./tests/unistr/test-u16-strchr.c, ./tests/unistr/test-u16-strcmp.c, ./tests/unistr/test-u16-strcmp.h, ./tests/unistr/test-u16-strcoll.c, ./tests/unistr/test-u16-strcpy.c, ./tests/unistr/test-u16-strdup.c, ./tests/unistr/test-u16-strlen.c, ./tests/unistr/test-u16-strmblen.c, ./tests/unistr/test-u16-strmbtouc.c, ./tests/unistr/test-u16-strncat.c, ./tests/unistr/test-u16-strncmp.c, ./tests/unistr/test-u16-strncpy.c, ./tests/unistr/test-u16-strnlen.c, ./tests/unistr/test-u16-to-u32.c, ./tests/unistr/test-u16-to-u8.c, ./tests/unistr/test-u16-uctomb.c, ./tests/unistr/test-u32-check.c, ./tests/unistr/test-u32-chr.c, ./tests/unistr/test-u32-cmp.c, ./tests/unistr/test-u32-cmp2.c, ./tests/unistr/test-u32-cpy-alloc.c, ./tests/unistr/test-u32-cpy.c, ./tests/unistr/test-u32-mblen.c, ./tests/unistr/test-u32-mbsnlen.c, ./tests/unistr/test-u32-mbtouc-unsafe.c, ./tests/unistr/test-u32-mbtouc.c, ./tests/unistr/test-u32-mbtouc.h, ./tests/unistr/test-u32-mbtoucr.c, ./tests/unistr/test-u32-move.c, ./tests/unistr/test-u32-next.c, ./tests/unistr/test-u32-prev.c, ./tests/unistr/test-u32-set.c, ./tests/unistr/test-u32-stpcpy.c, ./tests/unistr/test-u32-stpncpy.c, ./tests/unistr/test-u32-strcat.c, ./tests/unistr/test-u32-strchr.c, ./tests/unistr/test-u32-strcmp.c, ./tests/unistr/test-u32-strcmp.h, ./tests/unistr/test-u32-strcoll.c, ./tests/unistr/test-u32-strcpy.c, ./tests/unistr/test-u32-strdup.c, ./tests/unistr/test-u32-strlen.c, ./tests/unistr/test-u32-strmblen.c, ./tests/unistr/test-u32-strmbtouc.c, ./tests/unistr/test-u32-strncat.c, ./tests/unistr/test-u32-strncmp.c, ./tests/unistr/test-u32-strncpy.c, ./tests/unistr/test-u32-strnlen.c, ./tests/unistr/test-u32-to-u16.c, ./tests/unistr/test-u32-to-u8.c, ./tests/unistr/test-u32-uctomb.c, ./tests/unistr/test-u8-check.c, ./tests/unistr/test-u8-chr.c, ./tests/unistr/test-u8-cmp.c, ./tests/unistr/test-u8-cmp2.c, ./tests/unistr/test-u8-cpy-alloc.c, ./tests/unistr/test-u8-cpy.c, ./tests/unistr/test-u8-mblen.c, ./tests/unistr/test-u8-mbsnlen.c, ./tests/unistr/test-u8-mbtouc-unsafe.c, ./tests/unistr/test-u8-mbtouc.c, ./tests/unistr/test-u8-mbtouc.h, ./tests/unistr/test-u8-mbtoucr.c, ./tests/unistr/test-u8-move.c, ./tests/unistr/test-u8-next.c, ./tests/unistr/test-u8-prev.c, ./tests/unistr/test-u8-set.c, ./tests/unistr/test-u8-stpcpy.c, ./tests/unistr/test-u8-stpncpy.c, ./tests/unistr/test-u8-strcat.c, ./tests/unistr/test-u8-strchr.c, ./tests/unistr/test-u8-strcmp.c, ./tests/unistr/test-u8-strcmp.h, ./tests/unistr/test-u8-strcoll.c, ./tests/unistr/test-u8-strcpy.c, ./tests/unistr/test-u8-strdup.c, ./tests/unistr/test-u8-strlen.c, ./tests/unistr/test-u8-strmblen.c, ./tests/unistr/test-u8-strmbtouc.c, ./tests/unistr/test-u8-strncat.c, ./tests/unistr/test-u8-strncmp.c, ./tests/unistr/test-u8-strncpy.c, ./tests/unistr/test-u8-strnlen.c, ./tests/unistr/test-u8-to-u16.c, ./tests/unistr/test-u8-to-u32.c, ./tests/unistr/test-u8-uctomb.c +Files: ./tests/minus-zero.h ./tests/test-_Exit.c ./tests/test-acos.c ./tests/test-acosf.c ./tests/test-acosl.c ./tests/test-arpa_inet-c++.cc ./tests/test-asin.c ./tests/test-asinf.c ./tests/test-asinl.c ./tests/test-astrxfrm.c ./tests/test-atan.c ./tests/test-atan2.c ./tests/test-atan2f.c ./tests/test-atanf.c ./tests/test-atanl.c ./tests/test-calloc-gnu.c ./tests/test-cbrt.c ./tests/test-ceil-ieee.c ./tests/test-ceilf-ieee.c ./tests/test-ceill-ieee.c ./tests/test-copysign.c ./tests/test-copysignf.c ./tests/test-copysignl.c ./tests/test-cos.c ./tests/test-cosf.c ./tests/test-cosh.c ./tests/test-coshf.c ./tests/test-cosl.c ./tests/test-di-set.c ./tests/test-dirent-c++.cc ./tests/test-erf.c ./tests/test-erfc.c ./tests/test-exclude8.sh ./tests/test-exp.c ./tests/test-expf.c ./tests/test-expl.c ./tests/test-fabs.c ./tests/test-fabsf.c ./tests/test-fcntl-h-c++.cc ./tests/test-floor-ieee.c ./tests/test-floorf-ieee.c ./tests/test-floorl-ieee.c ./tests/test-fmod.c ./tests/test-fmodf.c ./tests/test-getlogin.c ./tests/test-getlogin_r.c ./tests/test-glob-c++.cc ./tests/test-hypot.c ./tests/test-iconv-h-c++.cc ./tests/test-ino-map.c ./tests/test-inttostr.c ./tests/test-j0.c ./tests/test-j1.c ./tests/test-jn.c ./tests/test-langinfo-c++.cc ./tests/test-ldexp.c ./tests/test-lgamma.c ./tests/test-locale-c++.cc ./tests/test-locale-c++2.cc ./tests/test-log.c ./tests/test-log10.c ./tests/test-log10f.c ./tests/test-log1p.c ./tests/test-logb.c ./tests/test-logf.c ./tests/test-login_tty.c ./tests/test-logl.c ./tests/test-malloc-gnu.c ./tests/test-math-c++.cc ./tests/test-math-c++2.cc ./tests/test-modf.c ./tests/test-modff.c ./tests/test-net_if.c ./tests/test-nextafter.c ./tests/test-poll-h-c++.cc ./tests/test-poll-h.c ./tests/test-pow.c ./tests/test-powf.c ./tests/test-ptsname.c ./tests/test-ptsname_r.c ./tests/test-pty-c++.cc ./tests/test-realloc-gnu.c ./tests/test-regex-quote.c ./tests/test-remainder.c ./tests/test-rint.c ./tests/test-rintf.c ./tests/test-rintl.c ./tests/test-search-c++.cc ./tests/test-signal-h-c++.cc ./tests/test-signal-h-c++2.cc ./tests/test-sin.c ./tests/test-sinf.c ./tests/test-sinh.c ./tests/test-sinhf.c ./tests/test-sinl.c ./tests/test-spawn-c++.cc ./tests/test-sqrt.c ./tests/test-sqrtf.c ./tests/test-sqrtl.c ./tests/test-stdio-c++.cc ./tests/test-stdio-c++2.cc ./tests/test-stdlib-c++.cc ./tests/test-stdlib-c++2.cc ./tests/test-string-c++.cc ./tests/test-string-c++2.cc ./tests/test-strncat.c ./tests/test-strnlen.c ./tests/test-sys_ioctl-c++.cc ./tests/test-sys_select-c++.cc ./tests/test-sys_socket-c++.cc ./tests/test-sys_stat-c++.cc ./tests/test-sys_time-c++.cc ./tests/test-sys_wait-c++.cc ./tests/test-sys_wait.h ./tests/test-tan.c ./tests/test-tanf.c ./tests/test-tanh.c ./tests/test-tanhf.c ./tests/test-tanl.c ./tests/test-termios-c++.cc ./tests/test-termios.c ./tests/test-time-c++.cc ./tests/test-time-c++2.cc ./tests/test-trunc-ieee.c ./tests/test-truncf-ieee.c ./tests/test-truncl-ieee.c ./tests/test-ttyname_r.c ./tests/test-unistd-c++.cc ./tests/test-vasnprintf-posix3.c ./tests/test-wchar-c++.cc ./tests/test-wctype-h-c++.cc ./tests/test-y0.c ./tests/test-y1.c ./tests/test-yn.c ./tests/unigbrk/test-uc-gbrk-prop.c ./tests/unistr/test-cpy-alloc.h ./tests/unistr/test-cpy.h ./tests/unistr/test-move.h ./tests/unistr/test-set.h ./tests/unistr/test-stpcpy.h ./tests/unistr/test-stpncpy.h ./tests/unistr/test-strcat.h ./tests/unistr/test-strcmp.h ./tests/unistr/test-strcpy.h ./tests/unistr/test-strdup.h ./tests/unistr/test-strncat.h ./tests/unistr/test-strncmp.h ./tests/unistr/test-strncpy.h ./tests/unistr/test-strnlen.h ./tests/unistr/test-u16-check.c ./tests/unistr/test-u16-chr.c ./tests/unistr/test-u16-cmp.c ./tests/unistr/test-u16-cmp2.c ./tests/unistr/test-u16-cpy-alloc.c ./tests/unistr/test-u16-cpy.c ./tests/unistr/test-u16-mblen.c ./tests/unistr/test-u16-mbsnlen.c ./tests/unistr/test-u16-mbtouc-unsafe.c ./tests/unistr/test-u16-mbtouc.c ./tests/unistr/test-u16-mbtouc.h ./tests/unistr/test-u16-mbtoucr.c ./tests/unistr/test-u16-move.c ./tests/unistr/test-u16-next.c ./tests/unistr/test-u16-prev.c ./tests/unistr/test-u16-set.c ./tests/unistr/test-u16-stpcpy.c ./tests/unistr/test-u16-stpncpy.c ./tests/unistr/test-u16-strcat.c ./tests/unistr/test-u16-strchr.c ./tests/unistr/test-u16-strcmp.c ./tests/unistr/test-u16-strcmp.h ./tests/unistr/test-u16-strcoll.c ./tests/unistr/test-u16-strcpy.c ./tests/unistr/test-u16-strdup.c ./tests/unistr/test-u16-strlen.c ./tests/unistr/test-u16-strmblen.c ./tests/unistr/test-u16-strmbtouc.c ./tests/unistr/test-u16-strncat.c ./tests/unistr/test-u16-strncmp.c ./tests/unistr/test-u16-strncpy.c ./tests/unistr/test-u16-strnlen.c ./tests/unistr/test-u16-to-u32.c ./tests/unistr/test-u16-to-u8.c ./tests/unistr/test-u16-uctomb.c ./tests/unistr/test-u32-check.c ./tests/unistr/test-u32-chr.c ./tests/unistr/test-u32-cmp.c ./tests/unistr/test-u32-cmp2.c ./tests/unistr/test-u32-cpy-alloc.c ./tests/unistr/test-u32-cpy.c ./tests/unistr/test-u32-mblen.c ./tests/unistr/test-u32-mbsnlen.c ./tests/unistr/test-u32-mbtouc-unsafe.c ./tests/unistr/test-u32-mbtouc.c ./tests/unistr/test-u32-mbtouc.h ./tests/unistr/test-u32-mbtoucr.c ./tests/unistr/test-u32-move.c ./tests/unistr/test-u32-next.c ./tests/unistr/test-u32-prev.c ./tests/unistr/test-u32-set.c ./tests/unistr/test-u32-stpcpy.c ./tests/unistr/test-u32-stpncpy.c ./tests/unistr/test-u32-strcat.c ./tests/unistr/test-u32-strchr.c ./tests/unistr/test-u32-strcmp.c ./tests/unistr/test-u32-strcmp.h ./tests/unistr/test-u32-strcoll.c ./tests/unistr/test-u32-strcpy.c ./tests/unistr/test-u32-strdup.c ./tests/unistr/test-u32-strlen.c ./tests/unistr/test-u32-strmblen.c ./tests/unistr/test-u32-strmbtouc.c ./tests/unistr/test-u32-strncat.c ./tests/unistr/test-u32-strncmp.c ./tests/unistr/test-u32-strncpy.c ./tests/unistr/test-u32-strnlen.c ./tests/unistr/test-u32-to-u16.c ./tests/unistr/test-u32-to-u8.c ./tests/unistr/test-u32-uctomb.c ./tests/unistr/test-u8-check.c ./tests/unistr/test-u8-chr.c ./tests/unistr/test-u8-cmp.c ./tests/unistr/test-u8-cmp2.c ./tests/unistr/test-u8-cpy-alloc.c ./tests/unistr/test-u8-cpy.c ./tests/unistr/test-u8-mblen.c ./tests/unistr/test-u8-mbsnlen.c ./tests/unistr/test-u8-mbtouc-unsafe.c ./tests/unistr/test-u8-mbtouc.c ./tests/unistr/test-u8-mbtouc.h ./tests/unistr/test-u8-mbtoucr.c ./tests/unistr/test-u8-move.c ./tests/unistr/test-u8-next.c ./tests/unistr/test-u8-prev.c ./tests/unistr/test-u8-set.c ./tests/unistr/test-u8-stpcpy.c ./tests/unistr/test-u8-stpncpy.c ./tests/unistr/test-u8-strcat.c ./tests/unistr/test-u8-strchr.c ./tests/unistr/test-u8-strcmp.c ./tests/unistr/test-u8-strcmp.h ./tests/unistr/test-u8-strcoll.c ./tests/unistr/test-u8-strcpy.c ./tests/unistr/test-u8-strdup.c ./tests/unistr/test-u8-strlen.c ./tests/unistr/test-u8-strmblen.c ./tests/unistr/test-u8-strmbtouc.c ./tests/unistr/test-u8-strncat.c ./tests/unistr/test-u8-strncmp.c ./tests/unistr/test-u8-strncpy.c ./tests/unistr/test-u8-strnlen.c ./tests/unistr/test-u8-to-u16.c ./tests/unistr/test-u8-to-u32.c ./tests/unistr/test-u8-uctomb.c Copyright: 2010-2013 Free Software Foundation, Inc. License: GPL-3+ -Files: ./tests/unictype/test-bidi_longname.c, ./tests/unictype/test-combiningclass_longname.c, ./tests/unictype/test-combiningclass_name.c +Files: ./tests/unictype/test-bidi_longname.c ./tests/unictype/test-combiningclass_longname.c ./tests/unictype/test-combiningclass_name.c Copyright: 2011 Free Software Foundation, Inc License: GPL-3+ -Files: ./tests/test-init.sh, ./tests/test-nonblocking.c, ./tests/test-passfd.c, ./tests/test-sethostname1.c, ./tests/test-sethostname2.c, ./tests/test-setlocale1.c, ./tests/test-setlocale2.c, ./tests/test-strftime.c, ./tests/test-strtol.c, ./tests/test-strtoll.c, ./tests/test-strtoul.c, ./tests/test-strtoull.c +Files: ./tests/test-init.sh ./tests/test-nonblocking.c ./tests/test-passfd.c ./tests/test-sethostname1.c ./tests/test-sethostname2.c ./tests/test-setlocale1.c ./tests/test-setlocale2.c ./tests/test-strftime.c ./tests/test-strtol.c ./tests/test-strtoll.c ./tests/test-strtoul.c ./tests/test-strtoull.c Copyright: 2011-2013 Free Software Foundation, Inc License: GPL-3+ -Files: ./check-copyright, ./tests/infinity.h, ./tests/socket-client.h, ./tests/socket-server.h, ./tests/test-accept.c, ./tests/test-accept4.c, ./tests/test-bind.c, ./tests/test-chdir.c, ./tests/test-close.c, ./tests/test-connect.c, ./tests/test-dprintf.c, ./tests/test-dup.c, ./tests/test-faccessat.c, ./tests/test-fchmod.c, ./tests/test-fchmodat.c, ./tests/test-fchown.c, ./tests/test-fdopen.c, ./tests/test-ffs.c, ./tests/test-ffsl.c, ./tests/test-ffsll.c, ./tests/test-float.c, ./tests/test-fma1.c, ./tests/test-fma1.h, ./tests/test-fma2.c, ./tests/test-fma2.h, ./tests/test-fmaf1.c, ./tests/test-fmaf2.c, ./tests/test-fmal1.c, ./tests/test-fmal2.c, ./tests/test-fseeko3.c, ./tests/test-fseeko4.c, ./tests/test-fstat.c, ./tests/test-ftello4.c, ./tests/test-ftruncate.c, ./tests/test-get-rusage-as.c, ./tests/test-get-rusage-data.c, ./tests/test-getloadavg.c, ./tests/test-getpeername.c, ./tests/test-getsockname.c, ./tests/test-getsockopt.c, ./tests/test-grantpt.c, ./tests/test-ignore-value.c, ./tests/test-imaxabs.c, ./tests/test-imaxdiv.c, ./tests/test-integer_length.c, ./tests/test-integer_length_l.c, ./tests/test-integer_length_ll.c, ./tests/test-intprops.c, ./tests/test-ioctl.c, ./tests/test-isatty.c, ./tests/test-listen.c, ./tests/test-netdb-c++.cc, ./tests/test-nonblocking-misc.h, ./tests/test-nonblocking-pipe-child.c, ./tests/test-nonblocking-pipe-main.c, ./tests/test-nonblocking-pipe.h, ./tests/test-nonblocking-reader.h, ./tests/test-nonblocking-socket-child.c, ./tests/test-nonblocking-socket-main.c, ./tests/test-nonblocking-socket.h, ./tests/test-nonblocking-writer.h, ./tests/test-pathmax.c, ./tests/test-posix_openpt.c, ./tests/test-posix_spawn_file_actions_addclose.c, ./tests/test-posix_spawn_file_actions_adddup2.c, ./tests/test-posix_spawn_file_actions_addopen.c, ./tests/test-pselect.c, ./tests/test-pthread_sigmask1.c, ./tests/test-pthread_sigmask2.c, ./tests/test-raise.c, ./tests/test-read.c, ./tests/test-recv.c, ./tests/test-recvfrom.c, ./tests/test-send.c, ./tests/test-sendto.c, ./tests/test-setsockopt.c, ./tests/test-shutdown.c, ./tests/test-sigprocmask.c, ./tests/test-strtoimax.c, ./tests/test-strtoumax.c, ./tests/test-sys_types-c++.cc, ./tests/test-sys_types.c, ./tests/test-sys_uio.c, ./tests/test-thread_create.c, ./tests/test-thread_self.c, ./tests/test-unlockpt.c, ./tests/test-vdprintf.c, ./tests/test-write.c, ./tests/unistr/test-u16-strstr.c, ./tests/unistr/test-u32-strstr.c, ./tests/unistr/test-u8-strstr.c +Files: ./check-copyright ./tests/infinity.h ./tests/socket-client.h ./tests/socket-server.h ./tests/test-accept.c ./tests/test-accept4.c ./tests/test-bind.c ./tests/test-chdir.c ./tests/test-close.c ./tests/test-connect.c ./tests/test-dprintf.c ./tests/test-dup.c ./tests/test-faccessat.c ./tests/test-fchmod.c ./tests/test-fchmodat.c ./tests/test-fchown.c ./tests/test-fdopen.c ./tests/test-ffs.c ./tests/test-ffsl.c ./tests/test-ffsll.c ./tests/test-float.c ./tests/test-fma1.c ./tests/test-fma1.h ./tests/test-fma2.c ./tests/test-fma2.h ./tests/test-fmaf1.c ./tests/test-fmaf2.c ./tests/test-fmal1.c ./tests/test-fmal2.c ./tests/test-fseeko3.c ./tests/test-fseeko4.c ./tests/test-fstat.c ./tests/test-ftello4.c ./tests/test-ftruncate.c ./tests/test-get-rusage-as.c ./tests/test-get-rusage-data.c ./tests/test-getloadavg.c ./tests/test-getpeername.c ./tests/test-getsockname.c ./tests/test-getsockopt.c ./tests/test-grantpt.c ./tests/test-ignore-value.c ./tests/test-imaxabs.c ./tests/test-imaxdiv.c ./tests/test-integer_length.c ./tests/test-integer_length_l.c ./tests/test-integer_length_ll.c ./tests/test-intprops.c ./tests/test-ioctl.c ./tests/test-isatty.c ./tests/test-listen.c ./tests/test-netdb-c++.cc ./tests/test-nonblocking-misc.h ./tests/test-nonblocking-pipe-child.c ./tests/test-nonblocking-pipe-main.c ./tests/test-nonblocking-pipe.h ./tests/test-nonblocking-reader.h ./tests/test-nonblocking-socket-child.c ./tests/test-nonblocking-socket-main.c ./tests/test-nonblocking-socket.h ./tests/test-nonblocking-writer.h ./tests/test-pathmax.c ./tests/test-posix_openpt.c ./tests/test-posix_spawn_file_actions_addclose.c ./tests/test-posix_spawn_file_actions_adddup2.c ./tests/test-posix_spawn_file_actions_addopen.c ./tests/test-pselect.c ./tests/test-pthread_sigmask1.c ./tests/test-pthread_sigmask2.c ./tests/test-raise.c ./tests/test-read.c ./tests/test-recv.c ./tests/test-recvfrom.c ./tests/test-send.c ./tests/test-sendto.c ./tests/test-setsockopt.c ./tests/test-shutdown.c ./tests/test-sigprocmask.c ./tests/test-strtoimax.c ./tests/test-strtoumax.c ./tests/test-sys_types-c++.cc ./tests/test-sys_types.c ./tests/test-sys_uio.c ./tests/test-thread_create.c ./tests/test-thread_self.c ./tests/test-unlockpt.c ./tests/test-vdprintf.c ./tests/test-write.c ./tests/unistr/test-u16-strstr.c ./tests/unistr/test-u32-strstr.c ./tests/unistr/test-u8-strstr.c Copyright: 2011-2013 Free Software Foundation, Inc. License: GPL-3+ @@ -1539,1635 +1553,1644 @@ Files: ./tests/test-log-ieee.c Copyright: 2012 Free Software Foundation, Inc License: GPL-3+ -Files: ./tests/test-cbrt-ieee.c, ./tests/test-cbrt-ieee.h, ./tests/test-cbrt.h, ./tests/test-cbrtf-ieee.c, ./tests/test-cbrtl-ieee.c, ./tests/test-exp-ieee.c, ./tests/test-exp-ieee.h, ./tests/test-exp.h, ./tests/test-exp2-ieee.c, ./tests/test-exp2-ieee.h, ./tests/test-exp2.h, ./tests/test-exp2f-ieee.c, ./tests/test-exp2l-ieee.c, ./tests/test-expf-ieee.c, ./tests/test-expl-ieee.c, ./tests/test-expm1-ieee.c, ./tests/test-expm1-ieee.h, ./tests/test-expm1.h, ./tests/test-expm1f-ieee.c, ./tests/test-expm1l-ieee.c, ./tests/test-fabs-ieee.c, ./tests/test-fabs-ieee.h, ./tests/test-fabs.h, ./tests/test-fabsf-ieee.c, ./tests/test-fabsl-ieee.c, ./tests/test-fma-ieee.c, ./tests/test-fma-ieee.h, ./tests/test-fmaf-ieee.c, ./tests/test-fmal-ieee.c, ./tests/test-fmod-ieee.c, ./tests/test-fmod-ieee.h, ./tests/test-fmod.h, ./tests/test-fmodf-ieee.c, ./tests/test-fmodl-ieee.c, ./tests/test-frexp-ieee.c, ./tests/test-frexp-ieee.h, ./tests/test-frexp.h, ./tests/test-frexpf-ieee.c, ./tests/test-frexpl-ieee.c, ./tests/test-hypot-ieee.c, ./tests/test-hypot-ieee.h, ./tests/test-hypot.h, ./tests/test-hypotf-ieee.c, ./tests/test-hypotl-ieee.c, ./tests/test-ldexp-ieee.c, ./tests/test-ldexp-ieee.h, ./tests/test-ldexpf-ieee.c, ./tests/test-ldexpl-ieee.c, ./tests/test-log-ieee.h, ./tests/test-log.h, ./tests/test-log1p-ieee.c, ./tests/test-log1p-ieee.h, ./tests/test-log1p.h, ./tests/test-log1pf-ieee.c, ./tests/test-log1pl-ieee.c, ./tests/test-log2-ieee.c, ./tests/test-log2-ieee.h, ./tests/test-log2.h, ./tests/test-log2f-ieee.c, ./tests/test-log2l-ieee.c, ./tests/test-logf-ieee.c, ./tests/test-logl-ieee.c, ./tests/test-modf-ieee.c, ./tests/test-modf-ieee.h, ./tests/test-modf.h, ./tests/test-modff-ieee.c, ./tests/test-modfl-ieee.c, ./tests/test-readtokens.c, ./tests/test-remainder-ieee.c, ./tests/test-remainder-ieee.h, ./tests/test-remainder.h, ./tests/test-remainderf-ieee.c, ./tests/test-remainderl-ieee.c, ./tests/test-rint-ieee.c, ./tests/test-rint-ieee.h, ./tests/test-rint.h, ./tests/test-rintf-ieee.c, ./tests/test-rintl-ieee.c, ./tests/test-sqrt-ieee.c, ./tests/test-sqrt-ieee.h, ./tests/test-sqrt.h, ./tests/test-sqrtf-ieee.c, ./tests/test-sqrtl-ieee.c, ./tests/test-stdnoreturn.c +Files: ./tests/test-cbrt-ieee.c ./tests/test-cbrt-ieee.h ./tests/test-cbrt.h ./tests/test-cbrtf-ieee.c ./tests/test-cbrtl-ieee.c ./tests/test-exp-ieee.c ./tests/test-exp-ieee.h ./tests/test-exp.h ./tests/test-exp2-ieee.c ./tests/test-exp2-ieee.h ./tests/test-exp2.h ./tests/test-exp2f-ieee.c ./tests/test-exp2l-ieee.c ./tests/test-expf-ieee.c ./tests/test-expl-ieee.c ./tests/test-expm1-ieee.c ./tests/test-expm1-ieee.h ./tests/test-expm1.h ./tests/test-expm1f-ieee.c ./tests/test-expm1l-ieee.c ./tests/test-fabs-ieee.c ./tests/test-fabs-ieee.h ./tests/test-fabs.h ./tests/test-fabsf-ieee.c ./tests/test-fabsl-ieee.c ./tests/test-fma-ieee.c ./tests/test-fma-ieee.h ./tests/test-fmaf-ieee.c ./tests/test-fmal-ieee.c ./tests/test-fmod-ieee.c ./tests/test-fmod-ieee.h ./tests/test-fmod.h ./tests/test-fmodf-ieee.c ./tests/test-fmodl-ieee.c ./tests/test-frexp-ieee.c ./tests/test-frexp-ieee.h ./tests/test-frexp.h ./tests/test-frexpf-ieee.c ./tests/test-frexpl-ieee.c ./tests/test-hypot-ieee.c ./tests/test-hypot-ieee.h ./tests/test-hypot.h ./tests/test-hypotf-ieee.c ./tests/test-hypotl-ieee.c ./tests/test-ldexp-ieee.c ./tests/test-ldexp-ieee.h ./tests/test-ldexpf-ieee.c ./tests/test-ldexpl-ieee.c ./tests/test-log-ieee.h ./tests/test-log.h ./tests/test-log1p-ieee.c ./tests/test-log1p-ieee.h ./tests/test-log1p.h ./tests/test-log1pf-ieee.c ./tests/test-log1pl-ieee.c ./tests/test-log2-ieee.c ./tests/test-log2-ieee.h ./tests/test-log2.h ./tests/test-log2f-ieee.c ./tests/test-log2l-ieee.c ./tests/test-logf-ieee.c ./tests/test-logl-ieee.c ./tests/test-modf-ieee.c ./tests/test-modf-ieee.h ./tests/test-modf.h ./tests/test-modff-ieee.c ./tests/test-modfl-ieee.c ./tests/test-readtokens.c ./tests/test-remainder-ieee.c ./tests/test-remainder-ieee.h ./tests/test-remainder.h ./tests/test-remainderf-ieee.c ./tests/test-remainderl-ieee.c ./tests/test-rint-ieee.c ./tests/test-rint-ieee.h ./tests/test-rint.h ./tests/test-rintf-ieee.c ./tests/test-rintl-ieee.c ./tests/test-sqrt-ieee.c ./tests/test-sqrt-ieee.h ./tests/test-sqrt.h ./tests/test-sqrtf-ieee.c ./tests/test-sqrtl-ieee.c ./tests/test-stdnoreturn.c Copyright: 2012-2013 Free Software Foundation, Inc License: GPL-3+ Files: ./tests/test-lstat.h Copyright: 2008-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF20] +License: GPL-3+ [REF19] -Files: ./tests/test-areadlink-with-size.c, ./tests/test-areadlink.c, ./tests/test-areadlink.h, ./tests/test-areadlinkat-with-size.c, ./tests/test-areadlinkat.c, ./tests/test-fdutimensat.c, ./tests/test-freopen-safer.c, ./tests/test-fstatat.c, ./tests/test-futimens.c, ./tests/test-getgroups.c, ./tests/test-inet_ntop.c, ./tests/test-inet_pton.c, ./tests/test-isblank.c, ./tests/test-linkat.c, ./tests/test-mkdir.c, ./tests/test-mkdirat.c, ./tests/test-openat.c, ./tests/test-posixtm.c, ./tests/test-readlink.c, ./tests/test-readlink.h, ./tests/test-remove.c, ./tests/test-renameat.c, ./tests/test-rmdir.c, ./tests/test-rmdir.h, ./tests/test-stat.c, ./tests/test-stat.h, ./tests/test-symlink.c, ./tests/test-symlink.h, ./tests/test-unlink.c, ./tests/test-unlink.h, ./tests/test-unlinkat.c, ./tests/test-utimens.c, ./tests/test-utimensat.c +Files: ./tests/test-areadlink-with-size.c ./tests/test-areadlink.c ./tests/test-areadlink.h ./tests/test-areadlinkat-with-size.c ./tests/test-areadlinkat.c ./tests/test-fdutimensat.c ./tests/test-freopen-safer.c ./tests/test-fstatat.c ./tests/test-futimens.c ./tests/test-getgroups.c ./tests/test-inet_ntop.c ./tests/test-inet_pton.c ./tests/test-isblank.c ./tests/test-linkat.c ./tests/test-mkdir.c ./tests/test-mkdirat.c ./tests/test-openat.c ./tests/test-posixtm.c ./tests/test-readlink.c ./tests/test-readlink.h ./tests/test-remove.c ./tests/test-renameat.c ./tests/test-rmdir.c ./tests/test-rmdir.h ./tests/test-stat.c ./tests/test-stat.h ./tests/test-symlink.c ./tests/test-symlink.h ./tests/test-unlink.c ./tests/test-unlink.h ./tests/test-unlinkat.c ./tests/test-utimens.c ./tests/test-utimensat.c Copyright: 2009-2013 Free Software Foundation, Inc. -License: GPL-3+ [REF20] +License: GPL-3+ [REF19] Files: ./build-aux/config.sub Copyright: 1992-2013 Free Software Foundation, Inc. -License: GPL-3+ and other [REF21] +License: GPL-3+ and other [REF20] -Files: ./lib/isapipe.h, ./lib/libunistring.valgrind, ./lib/mbfile.c, ./lib/mbiter.c, ./lib/mbuiter.c, ./lib/strtoumax.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_byname.gperf, ./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_LC.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_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_byname.gperf, ./lib/unictype/combiningclass_byname.gperf, ./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/joininggroup_byname.gperf, ./lib/unictype/joininggroup_of.h, ./lib/unictype/joiningtype_byname.gperf, ./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_case_ignorable.h, ./lib/unictype/pr_cased.h, ./lib/unictype/pr_changes_when_casefolded.h, ./lib/unictype/pr_changes_when_casemapped.h, ./lib/unictype/pr_changes_when_lowercased.h, ./lib/unictype/pr_changes_when_titlecased.h, ./lib/unictype/pr_changes_when_uppercased.h, ./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/sy_c_ident.h, ./lib/unictype/sy_java_ident.h, ./lib/unigbrk/gbrkprop.h, ./lib/uniname/gen-uninames.lisp, ./lib/uniname/uninames.h, ./tests/test-roundf2.c, ./tests/test-select-in.sh, ./tests/test-select-out.sh, ./tests/test-tsearch.sh -License: LGPL [REF22] +Files: ./lib/isapipe.h ./lib/libunistring.valgrind ./lib/mbfile.c ./lib/mbiter.c ./lib/mbuiter.c ./lib/strtoumax.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_byname.gperf ./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_LC.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_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_byname.gperf ./lib/unictype/combiningclass_byname.gperf ./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/joininggroup_byname.gperf ./lib/unictype/joininggroup_of.h ./lib/unictype/joiningtype_byname.gperf ./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_case_ignorable.h ./lib/unictype/pr_cased.h ./lib/unictype/pr_changes_when_casefolded.h ./lib/unictype/pr_changes_when_casemapped.h ./lib/unictype/pr_changes_when_lowercased.h ./lib/unictype/pr_changes_when_titlecased.h ./lib/unictype/pr_changes_when_uppercased.h ./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/sy_c_ident.h ./lib/unictype/sy_java_ident.h ./lib/unigbrk/gbrkprop.h ./lib/uniname/gen-uninames.lisp ./lib/uniname/uninames.h ./tests/test-roundf2.c ./tests/test-select-in.sh ./tests/test-select-out.sh ./tests/test-tsearch.sh +Copyright: unknown +License: LGPL [REF21] Files: ./lib/random.c Copyright: 1983 Regents of the University of California / 1995-1997, 2000-2002, 2012-2013 Free Software Foundation, Inc -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/obstack.h Copyright: 1988-1994, 1996-1999, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/obstack.c Copyright: 1988-1994, 1996-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/error.c Copyright: 1990-1998, 2000-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/memrchr.c Copyright: 1991, 1993, 1996-1997, 1999-2000, 2003-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/strcspn.c Copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/putenv.c Copyright: 1991, 1994, 1997-1998, 2000, 2003-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/strtoul.c Copyright: 1991, 1997, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/atoll.c Copyright: 1991, 1997-1998, 2008-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/strtol.c Copyright: 1991-1992, 1994-1999, 2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/fsusage.c Copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/strtod.c Copyright: 1991-1992, 1997, 1999, 2003, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/fsusage.h Copyright: 1991-1992, 1997, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/strftime.c Copyright: 1991-2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/unsetenv.c Copyright: 1992, 1995-2002,2005-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/alphasort.c Copyright: 1992, 1997, 1998, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/scandir.c Copyright: 1992-1998, 2000, 2002-2003, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/acosl.c, ./lib/asinl.c, ./lib/cosl.c, ./lib/sinl.c, ./lib/tanl.c +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: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/strtoll.c Copyright: 1995-1997, 1999, 2001, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/strtoull.c Copyright: 1995-1997, 1999, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/tsearch.c Copyright: 1995-1997, 2000, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/error.h Copyright: 1995-1997, 2003, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp.h Copyright: 1995-1999, 2003-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp-parse.c Copyright: 1995-2000, 2002, 2003, 2004, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp-help.c Copyright: 1995-2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/getsubopt.c Copyright: 1996-1997, 1999, 2004, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp-pvh.c Copyright: 1996-1997, 1999, 2004, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp-pv.c Copyright: 1996-1997, 1999, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp-ba.c Copyright: 1996-1997, 1999, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/strftime.m4 Copyright: 1996-1997, 1999-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/error.m4 Copyright: 1996-1998, 2001-2004, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp-namefrob.h Copyright: 1997, 2003, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp-fs-xinl.c Copyright: 1997, 2003-2004, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp-fmtstream.h Copyright: 1997, 2006-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp-eexst.c Copyright: 1997, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/cbrt.c, ./lib/cbrtf.c +Files: ./lib/cbrt.c ./lib/cbrtf.c Copyright: 1997, 2012-2013 Free Software Foundation, Inc -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/fsusage.m4 Copyright: 1997-1998, 2000-2001, 2003-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp-xinl.c Copyright: 1997-1998, 2004, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/argp-fmtstream.c Copyright: 1997-1999, 2001-2003, 2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/mbspcasecmp.c Copyright: 1998-1999, 2005-2008, 2010-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/mbmemcasecmp.c, ./lib/mbscasecmp.c, ./lib/mbsncasecmp.c +Files: ./lib/mbmemcasecmp.c ./lib/mbscasecmp.c ./lib/mbsncasecmp.c Copyright: 1998-1999, 2005-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/tmpdir.c Copyright: 1999, 2001-2002, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/strtoimax.c Copyright: 1999, 2001-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/unistdio/u-printf-parse.h Copyright: 1999, 2002, 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -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 +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, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./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-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-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-strtok.c +Files: ./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-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-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-strtok.c Copyright: 1999, 2002, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unistr/u-strstr.h, ./lib/unistr/u8-strstr.c +Files: ./lib/unistr/u-strstr.h ./lib/unistr/u8-strstr.c Copyright: 1999, 2002, 2006, 2010-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -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-cpy-alloc.h, ./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 +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-cpy-alloc.h ./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, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/mbscspn.c, ./lib/mbspbrk.c, ./lib/mbsspn.c, ./lib/mbstok_r.c, ./lib/unistdio/u-vasprintf.h, ./lib/unistdio/u-vsprintf.h +Files: ./lib/mbscspn.c ./lib/mbspbrk.c ./lib/mbsspn.c ./lib/mbstok_r.c ./lib/unistdio/u-vasprintf.h ./lib/unistdio/u-vsprintf.h Copyright: 1999, 2002, 2006-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/unistdio/u-vsnprintf.h Copyright: 1999, 2002, 2006-2013 Free Software Foundation, Inc.b -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/version-etc.h Copyright: 1999, 2003, 2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/sincosl.c Copyright: 1999, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/trigl.c Copyright: 1999, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/wcpcpy-impl.h, ./lib/wcpncpy-impl.h, ./lib/wcscasecmp-impl.h, ./lib/wcscat-impl.h, ./lib/wcschr-impl.h, ./lib/wcscmp-impl.h, ./lib/wcscpy-impl.h, ./lib/wcscspn-impl.h, ./lib/wcsdup-impl.h, ./lib/wcslen-impl.h, ./lib/wcsncasecmp-impl.h, ./lib/wcsncat-impl.h, ./lib/wcsncmp-impl.h, ./lib/wcsncpy-impl.h, ./lib/wcsnlen-impl.h, ./lib/wcspbrk-impl.h, ./lib/wcsrchr-impl.h, ./lib/wcsspn-impl.h, ./lib/wcsstr-impl.h, ./lib/wcstok-impl.h, ./lib/wcswidth-impl.h, ./lib/wmemchr-impl.h, ./lib/wmemcmp-impl.h, ./lib/wmemcpy-impl.h, ./lib/wmemmove-impl.h, ./lib/wmemset-impl.h +Files: ./lib/wcpcpy-impl.h ./lib/wcpncpy-impl.h ./lib/wcscasecmp-impl.h ./lib/wcscat-impl.h ./lib/wcschr-impl.h ./lib/wcscmp-impl.h ./lib/wcscpy-impl.h ./lib/wcscspn-impl.h ./lib/wcsdup-impl.h ./lib/wcslen-impl.h ./lib/wcsncasecmp-impl.h ./lib/wcsncat-impl.h ./lib/wcsncmp-impl.h ./lib/wcsncpy-impl.h ./lib/wcsnlen-impl.h ./lib/wcspbrk-impl.h ./lib/wcsrchr-impl.h ./lib/wcsspn-impl.h ./lib/wcsstr-impl.h ./lib/wcstok-impl.h ./lib/wcswidth-impl.h ./lib/wmemchr-impl.h ./lib/wmemcmp-impl.h ./lib/wmemcpy-impl.h ./lib/wmemmove-impl.h ./lib/wmemset-impl.h Copyright: 1999, 2011-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/nanosleep.c Copyright: 1999-2000, 2002, 2004-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -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-strmblen.c, ./lib/unistr/u8-strmbtouc.c +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-strmblen.c ./lib/unistr/u8-strmbtouc.c Copyright: 1999-2000, 2002, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/mbrlen.c Copyright: 1999-2000, 2008-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/nanosleep.m4 Copyright: 1999-2001, 2003-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unistr/u16-mbtouc-unsafe.c, ./lib/unistr/u16-mbtouc.c, ./lib/unistr/u16-mbtoucr.c +Files: ./lib/unistr/u16-mbtouc-unsafe.c ./lib/unistr/u16-mbtouc.c ./lib/unistr/u16-mbtoucr.c Copyright: 1999-2002, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/version-etc-fsf.c Copyright: 1999-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/version-etc.c Copyright: 1999-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/uniwbrk/wbrkprop.h Copyright: 2000-2002, 2004, 2007-2011 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unilbrk/lbrkprop1.h, ./lib/unilbrk/lbrkprop2.h +Files: ./lib/unilbrk/lbrkprop1.h ./lib/unilbrk/lbrkprop2.h Copyright: 2000-2002, 2004, 2008-2011 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/uniname.in.h Copyright: 2000-2002, 2005, 2007, 2009-2013 Free Software Foundation -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unictype/identsyntaxmap.h, ./lib/uniname/uniname.c +Files: ./lib/unictype/identsyntaxmap.h ./lib/uniname/uniname.c Copyright: 2000-2002, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/atanl.c, ./lib/logl.c +Files: ./lib/atanl.c ./lib/logl.c Copyright: 2001 by Stephen L. Moshier -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/mbiter.h, ./lib/mbuiter.h +Files: ./lib/mbiter.h ./lib/mbuiter.h Copyright: 2001, 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/mbfile.h Copyright: 2001, 2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/mbchar.h Copyright: 2001, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/mbchar.c Copyright: 2001, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/vararrays.m4 Copyright: 2001, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/uniwidth.in.h Copyright: 2001-2002, 2005, 2007, 2009-2013 Free Software Foundation -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/uniwidth/cjk.h Copyright: 2001-2002, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/uniwidth/u16-strwidth.c, ./lib/uniwidth/u32-strwidth.c, ./lib/uniwidth/u32-width.c, ./lib/uniwidth/u8-strwidth.c, ./m4/tmpdir.m4 +Files: ./lib/uniwidth/u16-strwidth.c ./lib/uniwidth/u32-strwidth.c ./lib/uniwidth/u32-width.c ./lib/uniwidth/u8-strwidth.c ./m4/tmpdir.m4 Copyright: 2001-2002, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unistr/u16-mbtouc-aux.c, ./lib/unistr/u16-mbtouc-unsafe-aux.c, ./lib/uniwidth/u16-width.c, ./lib/uniwidth/u8-width.c +Files: ./lib/unistr/u16-mbtouc-aux.c ./lib/unistr/u16-mbtouc-unsafe-aux.c ./lib/uniwidth/u16-width.c ./lib/uniwidth/u8-width.c Copyright: 2001-2002, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/uniwidth/width.c Copyright: 2001-2002, 2006-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/tmpdir.h Copyright: 2001-2002, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unilbrk.in.h, ./lib/uniwbrk.in.h +Files: ./lib/unilbrk.in.h ./lib/uniwbrk.in.h Copyright: 2001-2003, 2005-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/c-strstr.h Copyright: 2001-2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unigbrk/u8-grapheme-breaks.c, ./lib/unigbrk/ulc-grapheme-breaks.c, ./lib/unilbrk/lbrktables.c, ./lib/unilbrk/lbrktables.h, ./lib/unilbrk/u16-possible-linebreaks.c, ./lib/unilbrk/u16-width-linebreaks.c, ./lib/unilbrk/u32-possible-linebreaks.c, ./lib/unilbrk/u32-width-linebreaks.c, ./lib/unilbrk/u8-possible-linebreaks.c, ./lib/unilbrk/u8-width-linebreaks.c, ./lib/unilbrk/ulc-common.c, ./lib/unilbrk/ulc-common.h, ./lib/unilbrk/ulc-possible-linebreaks.c, ./lib/unilbrk/ulc-width-linebreaks.c, ./lib/uniwbrk/ulc-wordbreaks.c, ./lib/uniwbrk/wordbreak-property.c +Files: ./lib/unigbrk/u8-grapheme-breaks.c ./lib/unigbrk/ulc-grapheme-breaks.c ./lib/unilbrk/lbrktables.c ./lib/unilbrk/lbrktables.h ./lib/unilbrk/u16-possible-linebreaks.c ./lib/unilbrk/u16-width-linebreaks.c ./lib/unilbrk/u32-possible-linebreaks.c ./lib/unilbrk/u32-width-linebreaks.c ./lib/unilbrk/u8-possible-linebreaks.c ./lib/unilbrk/u8-width-linebreaks.c ./lib/unilbrk/ulc-common.c ./lib/unilbrk/ulc-common.h ./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-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./m4/strtoll.m4, ./m4/strtoull.m4 +Files: ./m4/strtoll.m4 ./m4/strtoull.m4 Copyright: 2002, 2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/strftime.h Copyright: 2002, 2004, 2008-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/unistr/u16-uctomb.c Copyright: 2002, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unictype/pr_test.c, ./lib/unistdio.in.h +Files: ./lib/unictype/pr_test.c ./lib/unistdio.in.h Copyright: 2002, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unicase/simple-mapping.h, ./lib/unicase/tocasefold.c, ./lib/unicase/tolower.c, ./lib/unicase/totitle.c, ./lib/unicase/toupper.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-strncat.c, ./lib/unistr/u8-strncmp.c, ./lib/unistr/u8-strncpy.c, ./m4/strtoul.m4 +Files: ./lib/unicase/simple-mapping.h ./lib/unicase/tocasefold.c ./lib/unicase/tolower.c ./lib/unicase/totitle.c ./lib/unicase/toupper.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-strncat.c ./lib/unistr/u8-strncmp.c ./lib/unistr/u8-strncpy.c ./m4/strtoul.m4 Copyright: 2002, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unictype/bidi_byname.c, ./lib/unictype/bidi_longname.c, ./lib/unictype/bidi_name.c, ./lib/unictype/bidi_test.c +Files: ./lib/unictype/bidi_byname.c ./lib/unictype/bidi_longname.c ./lib/unictype/bidi_name.c ./lib/unictype/bidi_test.c Copyright: 2002, 2006, 2011-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unicase/cased.c, ./lib/unicase/ignorable.c, ./lib/uniconv/u-conv-from-enc.h, ./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-conv-to-enc.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_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/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_case_ignorable.c, ./lib/unictype/pr_cased.c, ./lib/unictype/pr_changes_when_casefolded.c, ./lib/unictype/pr_changes_when_casemapped.c, ./lib/unictype/pr_changes_when_lowercased.c, ./lib/unictype/pr_changes_when_titlecased.c, ./lib/unictype/pr_changes_when_uppercased.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-mbtouc.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/u8-to-u16.c +Files: ./lib/unicase/cased.c ./lib/unicase/ignorable.c ./lib/uniconv/u-conv-from-enc.h ./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-conv-to-enc.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_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/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_case_ignorable.c ./lib/unictype/pr_cased.c ./lib/unictype/pr_changes_when_casefolded.c ./lib/unictype/pr_changes_when_casemapped.c ./lib/unictype/pr_changes_when_lowercased.c ./lib/unictype/pr_changes_when_titlecased.c ./lib/unictype/pr_changes_when_uppercased.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-mbtouc.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/u8-to-u16.c Copyright: 2002, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/unictype/categ_LC.c, ./lib/unictype/categ_longname.c, ./lib/unictype/combiningclass_longname.c, ./lib/unictype/combiningclass_name.c +Files: ./lib/unictype/categ_LC.c ./lib/unictype/categ_longname.c ./lib/unictype/combiningclass_longname.c ./lib/unictype/combiningclass_name.c Copyright: 2002, 2006-2007, 2011-2013 Free Software Foundation, Inc -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/unictype/categ_name.c Copyright: 2002, 2006-2007, 2011-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/uniconv/u-conv-to-enc.h, ./lib/uniconv/u16-conv-to-enc.c +Files: ./lib/uniconv/u-conv-to-enc.h ./lib/uniconv/u16-conv-to-enc.c Copyright: 2002, 2006-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/unicase.in.h Copyright: 2002, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/memrchr.m4 Copyright: 2002-2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/strtol.m4 Copyright: 2002-2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/strtod.m4 Copyright: 2002-2003, 2006-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/expl.c, ./lib/sqrtl.c +Files: ./lib/expl.c ./lib/sqrtl.c Copyright: 2002-2003, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/ldexpl.c Copyright: 2002-2003, 2007-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/trigl.h, ./m4/strcspn.m4 +Files: ./lib/trigl.h ./m4/strcspn.m4 Copyright: 2002-2003, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./m4/strtoimax.m4, ./m4/strtoumax.m4 +Files: ./m4/strtoimax.m4 ./m4/strtoumax.m4 Copyright: 2002-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/canon-host.m4 Copyright: 2002-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/putenv.m4 Copyright: 2002-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/tzset.m4 Copyright: 2003, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/argp.m4 Copyright: 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/fprintf.c, ./lib/sprintf.c, ./lib/unistdio/ulc-fprintf.c, ./lib/unistdio/ulc-vfprintf.c, ./lib/vfprintf.c, ./lib/vsprintf.c +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-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/getsubopt.m4 Copyright: 2004, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./m4/mbfile.m4, ./m4/mbiter.m4 +Files: ./m4/mbfile.m4 ./m4/mbiter.m4 Copyright: 2005, 2008-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/argp-pin.c, ./lib/canon-host.h, ./lib/crc.h +Files: ./lib/argp-pin.c ./lib/canon-host.h ./lib/crc.h Copyright: 2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/crc.c Copyright: 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/mbchar.m4 Copyright: 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/c-strstr.c, ./lib/canon-host.c, ./lib/mbscasestr.c, ./lib/mbsstr.c, ./lib/str-kmp.h +Files: ./lib/c-strstr.c ./lib/canon-host.c ./lib/mbscasestr.c ./lib/mbsstr.c ./lib/str-kmp.h Copyright: 2005-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/isapipe.c Copyright: 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/i-ring.m4 Copyright: 2006, 2009-2012-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/i-ring.c, ./lib/i-ring.h, ./lib/imaxabs.c, ./lib/imaxdiv.c, ./m4/config-h.m4, ./m4/imaxabs.m4, ./m4/imaxdiv.m4, ./m4/isapipe.m4, ./m4/no-c++.m4 +Files: ./lib/i-ring.c ./lib/i-ring.h ./lib/imaxabs.c ./lib/imaxdiv.c ./m4/config-h.m4 ./m4/imaxabs.m4 ./m4/imaxdiv.m4 ./m4/isapipe.m4 ./m4/no-c++.m4 Copyright: 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/wcwidth.c Copyright: 2006-2007, 2010-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/closedir.c, ./lib/fchdir.c, ./lib/opendir.c, ./m4/fchdir.m4, ./m4/openmp.m4, ./m4/tsearch.m4, ./m4/wcwidth.m4, ./tests/macros.h +Files: ./lib/closedir.c ./lib/fchdir.c ./lib/opendir.c ./m4/fchdir.m4 ./m4/openmp.m4 ./m4/tsearch.m4 ./m4/wcwidth.m4 ./tests/macros.h Copyright: 2006-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/ceil.c Copyright: 2007, 2009, 2010-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/fma.c Copyright: 2007, 2009, 2011-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./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/fseterr.h, ./lib/fwritable.h, ./lib/fwriting.h, ./lib/isnanf.c, ./lib/isnanl.c, ./lib/printf-frexp.c, ./lib/printf-frexp.h, ./lib/printf-frexpl.c, ./lib/printf-frexpl.h, ./lib/round.c, ./lib/roundf.c, ./lib/roundl.c, ./lib/signbitf.c, ./lib/signbitl.c, ./lib/tmpfile.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_or.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/ceil.m4, ./m4/ceilf.m4, ./m4/ceill.m4, ./m4/check-math-lib.m4, ./m4/fbufmode.m4, ./m4/floor.m4, ./m4/floorf.m4, ./m4/floorl.m4, ./m4/fpieee.m4, ./m4/freadable.m4, ./m4/fwritable.m4, ./m4/fwriting.m4, ./m4/printf-frexp.m4, ./m4/printf-frexpl.m4, ./m4/round.m4, ./m4/roundl.m4, ./m4/tmpfile.m4 +Files: ./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/fseterr.h ./lib/fwritable.h ./lib/fwriting.h ./lib/isnanf.c ./lib/isnanl.c ./lib/printf-frexp.c ./lib/printf-frexp.h ./lib/printf-frexpl.c ./lib/printf-frexpl.h ./lib/round.c ./lib/roundf.c ./lib/roundl.c ./lib/signbitf.c ./lib/signbitl.c ./lib/tmpfile.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_or.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/ceil.m4 ./m4/ceilf.m4 ./m4/ceill.m4 ./m4/check-math-lib.m4 ./m4/fbufmode.m4 ./m4/floor.m4 ./m4/floorf.m4 ./m4/floorl.m4 ./m4/fpieee.m4 ./m4/freadable.m4 ./m4/fwritable.m4 ./m4/fwriting.m4 ./m4/printf-frexp.m4 ./m4/printf-frexpl.m4 ./m4/round.m4 ./m4/roundl.m4 ./m4/tmpfile.m4 Copyright: 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/printf.c, ./lib/rint.c, ./lib/trunc.c, ./m4/trunc.m4, ./m4/truncf.m4 +Files: ./lib/printf.c ./lib/rint.c ./lib/trunc.c ./m4/trunc.m4 ./m4/truncf.m4 Copyright: 2007, 2010-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/unictype/pr_byname.c Copyright: 2007, 2011-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/truncl.m4 Copyright: 2007-2008, 2010-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/fbufmode.c, ./lib/fpucw.h, ./lib/freadable.c, ./lib/freopen.c, ./lib/frexp.c, ./lib/fseterr.c, ./lib/fwritable.c, ./lib/fwriting.c, ./lib/isfinite.c, ./lib/isinf.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/signbitd.c, ./m4/dprintf-posix.m4, ./m4/exponentf.m4, ./m4/exponentl.m4, ./m4/fprintf-posix.m4, ./m4/freopen.m4, ./m4/frexp.m4, ./m4/frexpl.m4, ./m4/iconv_open-utf.m4, ./m4/isfinite.m4, ./m4/isinf.m4, ./m4/isnan.m4, ./m4/isnand.m4, ./m4/isnanf.m4, ./m4/isnanl.m4, ./m4/ldexpl.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 +Files: ./lib/fbufmode.c ./lib/fpucw.h ./lib/freadable.c ./lib/freopen.c ./lib/frexp.c ./lib/fseterr.c ./lib/fwritable.c ./lib/fwriting.c ./lib/isfinite.c ./lib/isinf.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/signbitd.c ./m4/dprintf-posix.m4 ./m4/exponentf.m4 ./m4/exponentl.m4 ./m4/fprintf-posix.m4 ./m4/freopen.m4 ./m4/frexp.m4 ./m4/frexpl.m4 ./m4/iconv_open-utf.m4 ./m4/isfinite.m4 ./m4/isinf.m4 ./m4/isnan.m4 ./m4/isnand.m4 ./m4/isnanf.m4 ./m4/isnanl.m4 ./m4/ldexpl.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 Copyright: 2007-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/isnand.c Copyright: 2008, 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/wcsrtombs-impl.h, ./lib/wcsrtombs.c, ./lib/wctob.c, ./m4/mbrlen.m4, ./m4/mbsnrtowcs.m4 +Files: ./lib/wcsrtombs-impl.h ./lib/wcsrtombs.c ./lib/wctob.c ./m4/mbrlen.m4 ./m4/mbsnrtowcs.m4 Copyright: 2008, 2010-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/mbsnrtowcs-impl.h, ./lib/mbsnrtowcs.c, ./lib/wcsnrtombs-impl.h, ./lib/wcsnrtombs.c, ./lib/wcsrtombs-state.c, ./m4/atoll.m4, ./m4/wcsnrtombs.m4, ./m4/wcsrtombs.m4, ./m4/wctob.m4 +Files: ./lib/mbsnrtowcs-impl.h ./lib/mbsnrtowcs.c ./lib/wcsnrtombs-impl.h ./lib/wcsnrtombs.c ./lib/wcsrtombs-state.c ./m4/atoll.m4 ./m4/wcsnrtombs.m4 ./m4/wcsrtombs.m4 ./m4/wctob.m4 Copyright: 2008-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/filevercmp.c, ./lib/filevercmp.h +Files: ./lib/filevercmp.c ./lib/filevercmp.h Copyright: 2008-2013 Free Software Foundation, Inc. / 1995 Ian Jackson / 2001 Anthony Towns -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/setlocale.c Copyright: 2009, 2011-2013 Free Software Foundation, Inc -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/mknod.m4 Copyright: 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/accept4.c, ./lib/amemxfrm.c, ./lib/amemxfrm.h, ./lib/dprintf.c, ./lib/dup3.c, ./lib/duplocale.c, ./lib/futimens.c, ./lib/mbmemcasecmp.h, ./lib/memcmp2.c, ./lib/memcmp2.h, ./lib/mkfifo.c, ./lib/mknod.c, ./lib/popen.c, ./lib/remove.c, ./lib/symlink.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-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/compat-decomposition.c, ./lib/uninorm/decomposing-form.c, ./lib/uninorm/decomposition.c, ./lib/uninorm/nfkc.c, ./lib/uninorm/nfkd.c, ./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-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/duplocale.m4, ./m4/futimens.m4, ./m4/libunistring.m4, ./m4/mkfifo.m4, ./m4/popen.m4, ./m4/remove.m4, ./m4/scandir.m4, ./m4/symlink.m4, ./m4/va-args.m4, ./m4/vdprintf.m4, ./m4/version-etc.m4 +Files: ./lib/accept4.c ./lib/amemxfrm.c ./lib/amemxfrm.h ./lib/dprintf.c ./lib/dup3.c ./lib/duplocale.c ./lib/futimens.c ./lib/mbmemcasecmp.h ./lib/memcmp2.c ./lib/memcmp2.h ./lib/mkfifo.c ./lib/mknod.c ./lib/popen.c ./lib/remove.c ./lib/symlink.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-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/compat-decomposition.c ./lib/uninorm/decomposing-form.c ./lib/uninorm/decomposition.c ./lib/uninorm/nfkc.c ./lib/uninorm/nfkd.c ./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-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/duplocale.m4 ./m4/futimens.m4 ./m4/libunistring.m4 ./m4/mkfifo.m4 ./m4/popen.m4 ./m4/remove.m4 ./m4/scandir.m4 ./m4/symlink.m4 ./m4/va-args.m4 ./m4/vdprintf.m4 ./m4/version-etc.m4 Copyright: 2009-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/unicase/u32-casecoll.c Copyright: 2009-2013 Free Software Foundation, Inc.w -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/minus-zero.m4 Copyright: 2010-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./m4/exp2.m4, ./m4/exp2l.m4, ./m4/expm1.m4, ./m4/expm1l.m4, ./m4/ilogb.m4, ./m4/ilogbf.m4, ./m4/ilogbl.m4, ./m4/log2.m4, ./m4/log2f.m4, ./m4/log2l.m4 +Files: ./m4/exp2.m4 ./m4/exp2l.m4 ./m4/expm1.m4 ./m4/expm1l.m4 ./m4/ilogb.m4 ./m4/ilogbf.m4 ./m4/ilogbl.m4 ./m4/log2.m4 ./m4/log2f.m4 ./m4/log2l.m4 Copyright: 2010-2013 Free Software Foundation, Inc -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/_Exit.c, ./lib/astrxfrm.c, ./lib/astrxfrm.h, ./lib/forkpty.c, ./lib/login_tty.c, ./lib/tcgetsid.c, ./lib/unigbrk.in.h, ./lib/unigbrk/u16-grapheme-breaks.c, ./lib/unigbrk/u16-grapheme-next.c, ./lib/unigbrk/u16-grapheme-prev.c, ./lib/unigbrk/u32-grapheme-breaks.c, ./lib/unigbrk/u32-grapheme-next.c, ./lib/unigbrk/u32-grapheme-prev.c, ./lib/unigbrk/u8-grapheme-next.c, ./lib/unigbrk/u8-grapheme-prev.c, ./lib/unigbrk/uc-gbrk-prop.c, ./lib/unigbrk/uc-is-grapheme-break.c, ./m4/_Exit.m4, ./m4/acosl.m4, ./m4/asinl.m4, ./m4/atanl.m4, ./m4/ceil-ieee.m4, ./m4/ceilf-ieee.m4, ./m4/ceill-ieee.m4, ./m4/cosl.m4, ./m4/expl.m4, ./m4/floor-ieee.m4, ./m4/floorf-ieee.m4, ./m4/libunistring-optional.m4, ./m4/logb.m4, ./m4/logl.m4, ./m4/mathfunc.m4, ./m4/mbslen.m4, ./m4/round-ieee.m4, ./m4/roundf-ieee.m4, ./m4/roundl-ieee.m4, ./m4/sinl.m4, ./m4/sqrt.m4, ./m4/sqrtl.m4, ./m4/tanl.m4, ./m4/tcgetsid.m4, ./m4/trunc-ieee.m4, ./m4/truncf-ieee.m4, ./m4/truncl-ieee.m4 +Files: ./lib/_Exit.c ./lib/astrxfrm.c ./lib/astrxfrm.h ./lib/forkpty.c ./lib/login_tty.c ./lib/tcgetsid.c ./lib/unigbrk.in.h ./lib/unigbrk/u16-grapheme-breaks.c ./lib/unigbrk/u16-grapheme-next.c ./lib/unigbrk/u16-grapheme-prev.c ./lib/unigbrk/u32-grapheme-breaks.c ./lib/unigbrk/u32-grapheme-next.c ./lib/unigbrk/u32-grapheme-prev.c ./lib/unigbrk/u8-grapheme-next.c ./lib/unigbrk/u8-grapheme-prev.c ./lib/unigbrk/uc-gbrk-prop.c ./lib/unigbrk/uc-is-grapheme-break.c ./m4/_Exit.m4 ./m4/acosl.m4 ./m4/asinl.m4 ./m4/atanl.m4 ./m4/ceil-ieee.m4 ./m4/ceilf-ieee.m4 ./m4/ceill-ieee.m4 ./m4/cosl.m4 ./m4/expl.m4 ./m4/floor-ieee.m4 ./m4/floorf-ieee.m4 ./m4/libunistring-optional.m4 ./m4/logb.m4 ./m4/logl.m4 ./m4/mathfunc.m4 ./m4/mbslen.m4 ./m4/round-ieee.m4 ./m4/roundf-ieee.m4 ./m4/roundl-ieee.m4 ./m4/sinl.m4 ./m4/sqrt.m4 ./m4/sqrtl.m4 ./m4/tanl.m4 ./m4/tcgetsid.m4 ./m4/trunc-ieee.m4 ./m4/truncf-ieee.m4 ./m4/truncl-ieee.m4 Copyright: 2010-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/expf.m4 Copyright: 2011-2013 -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/exp2f.c, ./lib/exp2l.c, ./lib/expl-table.c, ./lib/expm1l.c, ./lib/fmod.c, ./lib/fmodl.c, ./lib/log.c, ./lib/log1pl.c, ./lib/log2l.c, ./lib/unictype/combiningclass_byname.c, ./lib/unictype/joininggroup_byname.c, ./lib/unictype/joininggroup_name.c, ./lib/unictype/joininggroup_name.h, ./lib/unictype/joininggroup_of.c, ./lib/unictype/joiningtype_byname.c, ./lib/unictype/joiningtype_longname.c, ./lib/unictype/joiningtype_name.c, ./m4/exp2f.m4, ./m4/expm1f.m4, ./m4/fabsl.m4, ./m4/fmodl.m4, ./m4/log10l.m4, ./m4/modfl.m4 +Files: ./lib/exp2f.c ./lib/exp2l.c ./lib/expl-table.c ./lib/expm1l.c ./lib/fmod.c ./lib/fmodl.c ./lib/log.c ./lib/log1pl.c ./lib/log2l.c ./lib/unictype/combiningclass_byname.c ./lib/unictype/joininggroup_byname.c ./lib/unictype/joininggroup_name.c ./lib/unictype/joininggroup_name.h ./lib/unictype/joininggroup_of.c ./lib/unictype/joiningtype_byname.c ./lib/unictype/joiningtype_longname.c ./lib/unictype/joiningtype_name.c ./m4/exp2f.m4 ./m4/expm1f.m4 ./m4/fabsl.m4 ./m4/fmodl.m4 ./m4/log10l.m4 ./m4/modfl.m4 Copyright: 2011-2013 Free Software Foundation, Inc -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/acosf.c, ./lib/asinf.c, ./lib/atan2f.c, ./lib/atanf.c, ./lib/copysign.c, ./lib/copysignf.c, ./lib/copysignl.c, ./lib/cosf.c, ./lib/coshf.c, ./lib/dirent-private.h, ./lib/expf.c, ./lib/fabsf.c, ./lib/fmaf.c, ./lib/fmal.c, ./lib/fmodf.c, ./lib/frexpf.c, ./lib/iswctype-impl.h, ./lib/iswctype.c, ./lib/ldexpf.c, ./lib/log10f.c, ./lib/logf.c, ./lib/modff.c, ./lib/pclose.c, ./lib/powf.c, ./lib/readdir.c, ./lib/rewinddir.c, ./lib/rintf.c, ./lib/rintl.c, ./lib/sinf.c, ./lib/sinhf.c, ./lib/sqrtf.c, ./lib/tanf.c, ./lib/tanhf.c, ./lib/towctrans-impl.h, ./lib/towctrans.c, ./lib/wcpcpy.c, ./lib/wcpncpy.c, ./lib/wcscasecmp.c, ./lib/wcscat.c, ./lib/wcschr.c, ./lib/wcscmp.c, ./lib/wcscoll-impl.h, ./lib/wcscoll.c, ./lib/wcscpy.c, ./lib/wcscspn.c, ./lib/wcsdup.c, ./lib/wcslen.c, ./lib/wcsncasecmp.c, ./lib/wcsncat.c, ./lib/wcsncmp.c, ./lib/wcsncpy.c, ./lib/wcsnlen.c, ./lib/wcspbrk.c, ./lib/wcsrchr.c, ./lib/wcsspn.c, ./lib/wcsstr.c, ./lib/wcstok.c, ./lib/wcswidth.c, ./lib/wcsxfrm-impl.h, ./lib/wcsxfrm.c, ./lib/wctrans-impl.h, ./lib/wctrans.c, ./lib/wctype-impl.h, ./lib/wctype.c, ./lib/wmemchr.c, ./lib/wmemcmp.c, ./lib/wmemcpy.c, ./lib/wmemmove.c, ./lib/wmemset.c, ./m4/acos.m4, ./m4/acosf.m4, ./m4/asin.m4, ./m4/asinf.m4, ./m4/atan.m4, ./m4/atan2.m4, ./m4/atan2f.m4, ./m4/atanf.m4, ./m4/closedir.m4, ./m4/copysign.m4, ./m4/copysignf.m4, ./m4/copysignl.m4, ./m4/cos.m4, ./m4/cosf.m4, ./m4/cosh.m4, ./m4/coshf.m4, ./m4/exp.m4, ./m4/fabs.m4, ./m4/fabsf.m4, ./m4/fegetround.m4, ./m4/fma.m4, ./m4/fmaf.m4, ./m4/fmal.m4, ./m4/fmod.m4, ./m4/fmodf.m4, ./m4/frexpf.m4, ./m4/iswctype.m4, ./m4/ldexpf.m4, ./m4/log.m4, ./m4/log10.m4, ./m4/log10f.m4, ./m4/logf.m4, ./m4/modf.m4, ./m4/modff.m4, ./m4/opendir.m4, ./m4/pclose.m4, ./m4/pow.m4, ./m4/powf.m4, ./m4/readdir.m4, ./m4/rewinddir.m4, ./m4/rint.m4, ./m4/rintf.m4, ./m4/rintl.m4, ./m4/setlocale.m4, ./m4/sin.m4, ./m4/sinf.m4, ./m4/sinh.m4, ./m4/sinhf.m4, ./m4/sqrtf.m4, ./m4/tan.m4, ./m4/tanf.m4, ./m4/tanh.m4, ./m4/tanhf.m4, ./m4/towctrans.m4, ./m4/wcpcpy.m4, ./m4/wcpncpy.m4, ./m4/wcscasecmp.m4, ./m4/wcscat.m4, ./m4/wcschr.m4, ./m4/wcscmp.m4, ./m4/wcscoll.m4, ./m4/wcscpy.m4, ./m4/wcscspn.m4, ./m4/wcsdup.m4, ./m4/wcslen.m4, ./m4/wcsncasecmp.m4, ./m4/wcsncat.m4, ./m4/wcsncmp.m4, ./m4/wcsncpy.m4, ./m4/wcsnlen.m4, ./m4/wcspbrk.m4, ./m4/wcsrchr.m4, ./m4/wcsspn.m4, ./m4/wcsstr.m4, ./m4/wcstok.m4, ./m4/wcswidth.m4, ./m4/wcsxfrm.m4, ./m4/wctrans.m4, ./m4/wctype.m4, ./m4/wmemchr.m4, ./m4/wmemcmp.m4, ./m4/wmemcpy.m4, ./m4/wmemmove.m4, ./m4/wmemset.m4 +Files: ./lib/acosf.c ./lib/asinf.c ./lib/atan2f.c ./lib/atanf.c ./lib/copysign.c ./lib/copysignf.c ./lib/copysignl.c ./lib/cosf.c ./lib/coshf.c ./lib/dirent-private.h ./lib/expf.c ./lib/fabsf.c ./lib/fmaf.c ./lib/fmal.c ./lib/fmodf.c ./lib/frexpf.c ./lib/iswctype-impl.h ./lib/iswctype.c ./lib/ldexpf.c ./lib/log10f.c ./lib/logf.c ./lib/modff.c ./lib/pclose.c ./lib/powf.c ./lib/readdir.c ./lib/rewinddir.c ./lib/rintf.c ./lib/rintl.c ./lib/sinf.c ./lib/sinhf.c ./lib/sqrtf.c ./lib/tanf.c ./lib/tanhf.c ./lib/towctrans-impl.h ./lib/towctrans.c ./lib/wcpcpy.c ./lib/wcpncpy.c ./lib/wcscasecmp.c ./lib/wcscat.c ./lib/wcschr.c ./lib/wcscmp.c ./lib/wcscoll-impl.h ./lib/wcscoll.c ./lib/wcscpy.c ./lib/wcscspn.c ./lib/wcsdup.c ./lib/wcslen.c ./lib/wcsncasecmp.c ./lib/wcsncat.c ./lib/wcsncmp.c ./lib/wcsncpy.c ./lib/wcsnlen.c ./lib/wcspbrk.c ./lib/wcsrchr.c ./lib/wcsspn.c ./lib/wcsstr.c ./lib/wcstok.c ./lib/wcswidth.c ./lib/wcsxfrm-impl.h ./lib/wcsxfrm.c ./lib/wctrans-impl.h ./lib/wctrans.c ./lib/wctype-impl.h ./lib/wctype.c ./lib/wmemchr.c ./lib/wmemcmp.c ./lib/wmemcpy.c ./lib/wmemmove.c ./lib/wmemset.c ./m4/acos.m4 ./m4/acosf.m4 ./m4/asin.m4 ./m4/asinf.m4 ./m4/atan.m4 ./m4/atan2.m4 ./m4/atan2f.m4 ./m4/atanf.m4 ./m4/closedir.m4 ./m4/copysign.m4 ./m4/copysignf.m4 ./m4/copysignl.m4 ./m4/cos.m4 ./m4/cosf.m4 ./m4/cosh.m4 ./m4/coshf.m4 ./m4/exp.m4 ./m4/fabs.m4 ./m4/fabsf.m4 ./m4/fegetround.m4 ./m4/fma.m4 ./m4/fmaf.m4 ./m4/fmal.m4 ./m4/fmod.m4 ./m4/fmodf.m4 ./m4/frexpf.m4 ./m4/iswctype.m4 ./m4/ldexpf.m4 ./m4/log.m4 ./m4/log10.m4 ./m4/log10f.m4 ./m4/logf.m4 ./m4/modf.m4 ./m4/modff.m4 ./m4/opendir.m4 ./m4/pclose.m4 ./m4/pow.m4 ./m4/powf.m4 ./m4/readdir.m4 ./m4/rewinddir.m4 ./m4/rint.m4 ./m4/rintf.m4 ./m4/rintl.m4 ./m4/setlocale.m4 ./m4/sin.m4 ./m4/sinf.m4 ./m4/sinh.m4 ./m4/sinhf.m4 ./m4/sqrtf.m4 ./m4/tan.m4 ./m4/tanf.m4 ./m4/tanh.m4 ./m4/tanhf.m4 ./m4/towctrans.m4 ./m4/wcpcpy.m4 ./m4/wcpncpy.m4 ./m4/wcscasecmp.m4 ./m4/wcscat.m4 ./m4/wcschr.m4 ./m4/wcscmp.m4 ./m4/wcscoll.m4 ./m4/wcscpy.m4 ./m4/wcscspn.m4 ./m4/wcsdup.m4 ./m4/wcslen.m4 ./m4/wcsncasecmp.m4 ./m4/wcsncat.m4 ./m4/wcsncmp.m4 ./m4/wcsncpy.m4 ./m4/wcsnlen.m4 ./m4/wcspbrk.m4 ./m4/wcsrchr.m4 ./m4/wcsspn.m4 ./m4/wcsstr.m4 ./m4/wcstok.m4 ./m4/wcswidth.m4 ./m4/wcsxfrm.m4 ./m4/wctrans.m4 ./m4/wctype.m4 ./m4/wmemchr.m4 ./m4/wmemcmp.m4 ./m4/wmemcpy.m4 ./m4/wmemmove.m4 ./m4/wmemset.m4 Copyright: 2011-2013 Free Software Foundation, Inc. -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/modf.c Copyright: 2012 Free Software Foundation, Inc -License: LGPL [REF22] +License: LGPL [REF21] Files: ./m4/remainderl-ieee.m4 Copyright: 2012-2013 Free Software Foundation, Inc -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./lib/exp2.c, ./lib/expm1.c, ./lib/expm1f.c, ./lib/fabsl.c, ./lib/getrusage.c, ./lib/hypot.c, ./lib/hypotf.c, ./lib/hypotl.c, ./lib/ilogb.c, ./lib/ilogbf.c, ./lib/ilogbl.c, ./lib/log10.c, ./lib/log10l.c, ./lib/log1p.c, ./lib/log1pf.c, ./lib/log2.c, ./lib/log2f.c, ./lib/logb.c, ./lib/logbf.c, ./lib/logbl.c, ./lib/modfl.c, ./lib/remainder.c, ./lib/remainderf.c, ./lib/remainderl.c, ./lib/sys_resource.in.h, ./m4/cbrt.m4, ./m4/cbrtf.m4, ./m4/cbrtl-ieee.m4, ./m4/cbrtl.m4, ./m4/exp2l-ieee.m4, ./m4/expm1-ieee.m4, ./m4/fmod-ieee.m4, ./m4/fmodf-ieee.m4, ./m4/fmodl-ieee.m4, ./m4/fseterr.m4, ./m4/getrusage.m4, ./m4/hypot-ieee.m4, ./m4/hypot.m4, ./m4/hypotf-ieee.m4, ./m4/hypotf.m4, ./m4/hypotl-ieee.m4, ./m4/hypotl.m4, ./m4/log-ieee.m4, ./m4/log10-ieee.m4, ./m4/log10f-ieee.m4, ./m4/log1p-ieee.m4, ./m4/log1p.m4, ./m4/log1pf-ieee.m4, ./m4/log1pf.m4, ./m4/log1pl-ieee.m4, ./m4/log1pl.m4, ./m4/log2-ieee.m4, ./m4/log2f-ieee.m4, ./m4/logbf.m4, ./m4/logbl.m4, ./m4/logf-ieee.m4, ./m4/modf-ieee.m4, ./m4/modff-ieee.m4, ./m4/modfl-ieee.m4, ./m4/random.m4, ./m4/remainder-ieee.m4, ./m4/remainder.m4, ./m4/remainderf-ieee.m4, ./m4/remainderf.m4, ./m4/remainderl.m4, ./m4/sys_resource_h.m4 +Files: ./lib/exp2.c ./lib/expm1.c ./lib/expm1f.c ./lib/fabsl.c ./lib/getrusage.c ./lib/hypot.c ./lib/hypotf.c ./lib/hypotl.c ./lib/ilogb.c ./lib/ilogbf.c ./lib/ilogbl.c ./lib/log10.c ./lib/log10l.c ./lib/log1p.c ./lib/log1pf.c ./lib/log2.c ./lib/log2f.c ./lib/logb.c ./lib/logbf.c ./lib/logbl.c ./lib/modfl.c ./lib/remainder.c ./lib/remainderf.c ./lib/remainderl.c ./lib/sys_resource.in.h ./m4/cbrt.m4 ./m4/cbrtf.m4 ./m4/cbrtl-ieee.m4 ./m4/cbrtl.m4 ./m4/exp2l-ieee.m4 ./m4/expm1-ieee.m4 ./m4/fmod-ieee.m4 ./m4/fmodf-ieee.m4 ./m4/fmodl-ieee.m4 ./m4/fseterr.m4 ./m4/getrusage.m4 ./m4/hypot-ieee.m4 ./m4/hypot.m4 ./m4/hypotf-ieee.m4 ./m4/hypotf.m4 ./m4/hypotl-ieee.m4 ./m4/hypotl.m4 ./m4/log-ieee.m4 ./m4/log10-ieee.m4 ./m4/log10f-ieee.m4 ./m4/log1p-ieee.m4 ./m4/log1p.m4 ./m4/log1pf-ieee.m4 ./m4/log1pf.m4 ./m4/log1pl-ieee.m4 ./m4/log1pl.m4 ./m4/log2-ieee.m4 ./m4/log2f-ieee.m4 ./m4/logbf.m4 ./m4/logbl.m4 ./m4/logf-ieee.m4 ./m4/modf-ieee.m4 ./m4/modff-ieee.m4 ./m4/modfl-ieee.m4 ./m4/random.m4 ./m4/remainder-ieee.m4 ./m4/remainder.m4 ./m4/remainderf-ieee.m4 ./m4/remainderf.m4 ./m4/remainderl.m4 ./m4/sys_resource_h.m4 Copyright: 2012-2013 Free Software Foundation, Inc -License: LGPL [REF22] +License: LGPL [REF21] Files: ./lib/cbrtl.c Copyright: 2012-2013 Free Software Foundation, Inc. / 1984, 1991 by Stephen L. Moshier -License: LGPL [REF22] +License: LGPL [REF21] -Files: ./build-aux/snippet/_Noreturn.h, ./lib/binary-io.c, ./lib/bitrotate.c, ./lib/count-leading-zeros.c, ./lib/count-one-bits.c, ./lib/execinfo.c, ./lib/fchown-stub.c, ./lib/ffsl.c, ./lib/ffsll.c, ./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/imaxtostr.c, ./lib/inttostr.c, ./lib/malloca.valgrind, ./lib/math.c, ./lib/memchr.valgrind, ./lib/memchr2.valgrind, ./lib/mktime-internal.h, ./lib/offtostr.c, ./lib/pthread.c, ./lib/rawmemchr.valgrind, ./lib/se-context.c, ./lib/se-context.in.h, ./lib/se-selinux.c, ./lib/sig-handler.c, ./lib/stat-time.c, ./lib/strchrnul.valgrind, ./lib/sys_socket.c, ./lib/u64.c, ./lib/uinttostr.c, ./lib/umaxtostr.c, ./lib/unictype/bidi_of.h, ./lib/unictype/categ_M.h, ./lib/unictype/categ_of.h, ./lib/unictype/combiningclass.h, ./lib/unictype/joiningtype_of.h, ./lib/unictype/scripts.h, ./lib/unictype/scripts_byname.gperf, ./lib/uninorm/decomposition-table1.h, ./lib/uninorm/decomposition-table2.h, ./lib/unistd.c, ./lib/wctype-h.c, ./lib/xsize.c -License: LGPL-2+ [REF23] +Files: ./build-aux/snippet/_Noreturn.h ./lib/binary-io.c ./lib/bitrotate.c ./lib/count-leading-zeros.c ./lib/count-one-bits.c ./lib/execinfo.c ./lib/fchown-stub.c ./lib/ffsl.c ./lib/ffsll.c ./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/imaxtostr.c ./lib/inttostr.c ./lib/malloca.valgrind ./lib/math.c ./lib/memchr.valgrind ./lib/memchr2.valgrind ./lib/mktime-internal.h ./lib/offtostr.c ./lib/pthread.c ./lib/rawmemchr.valgrind ./lib/se-context.c ./lib/se-context.in.h ./lib/se-selinux.c ./lib/sig-handler.c ./lib/stat-time.c ./lib/strchrnul.valgrind ./lib/sys_socket.c ./lib/u64.c ./lib/uinttostr.c ./lib/umaxtostr.c ./lib/unictype/bidi_of.h ./lib/unictype/categ_M.h ./lib/unictype/categ_of.h ./lib/unictype/combiningclass.h ./lib/unictype/joiningtype_of.h ./lib/unictype/scripts.h ./lib/unictype/scripts_byname.gperf ./lib/uninorm/decomposition-table1.h ./lib/uninorm/decomposition-table2.h ./lib/unistd.c ./lib/wctype-h.c ./lib/xsize.c +Copyright: unknown +License: LGPL-2+ [REF22] Files: ./lib/random_r.c Copyright: 1983 Regents of the University of California / 1995, 2005, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/regex.h Copyright: 1985, 1989-1993, 1995-1998, 2000-2003, 2005-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/getopt1.c Copyright: 1987-1994, 1996-1998, 2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/getopt.c Copyright: 1987-1996, 1998-2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/rmdir.c Copyright: 1988, 1990, 1999, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/getopt_int.h Copyright: 1989-1994, 1996-1999, 2001, 2003-2004, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/getopt.in.h Copyright: 1989-1994, 1996-1999, 2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/dirname-lgpl.c Copyright: 1990, 1998, 2000-2001, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/basename-lgpl.c Copyright: 1990, 1998-2001, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/euidaccess.c Copyright: 1990-1991, 1995, 1998, 2000, 2003-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/getugroups.c Copyright: 1990-1991, 1998-2000, 2003-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/xalloc-oversized.h Copyright: 1990-2000, 2003-2004, 2006-2013 Free Software Foundation, Inc -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/memcmp.c Copyright: 1991, 1993, 1995, 1997-1998, 2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/memchr.c, ./lib/memchr2.c +Files: ./lib/memchr.c ./lib/memchr2.c Copyright: 1991, 1993, 1996-1997, 1999-2000, 2003-2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/strpbrk.c Copyright: 1991, 1994, 2000, 2002-2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/strsignal.c Copyright: 1991, 1994-2002, 2005, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/strdup.c Copyright: 1991, 1996-1998, 2002-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/strtok_r.c Copyright: 1991, 1996-1999, 2001, 2004, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/memset.c Copyright: 1991, 2003, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/cloexec.c Copyright: 1991, 2004, 2005, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/glob-libc.h Copyright: 1991-1992, 1995-1998, 2000-2001, 2004-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/fnmatch.in.h Copyright: 1991-1993, 1996-1999, 2001-2003, 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/fnmatch.c Copyright: 1991-1993, 1996-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/fnmatch_loop.c Copyright: 1991-1993,1996-2006,2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/memmem.c, ./lib/strstr.c +Files: ./lib/memmem.c ./lib/strstr.c Copyright: 1991-1994, 1996-1998, 2000, 2004, 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/tempname.c Copyright: 1991-2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/glob.c Copyright: 1991-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/stpcpy.c Copyright: 1992, 1995, 1997-1998, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/pathmax.h Copyright: 1992, 1999, 2001, 2003, 2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/gethostname.c Copyright: 1992, 2003, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/largefile.m4 Copyright: 1992-1996, 1998-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/getpass.c Copyright: 1992-2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/stpncpy.c Copyright: 1993, 1995-1997, 2002-2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/getndelim2.c Copyright: 1993, 1996-1998, 2000, 2003-2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/full-write.c Copyright: 1993-1994, 1997-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/safe-read.c Copyright: 1993-1994, 1998, 2002-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/mktime.c Copyright: 1993-1999, 2002-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/getdelim.c Copyright: 1994, 1996-1998, 2001, 2003, 2005-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/timegm.c Copyright: 1994, 1997, 2003-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./build-aux/snippet/link-warning.h Copyright: 1995, 1997, 2000, 2002-2003, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/minmax.h Copyright: 1995, 1998, 2001, 2003, 2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/alloca.in.h Copyright: 1995, 1999, 2001-2004, 2006-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/stdlib.in.h Copyright: 1995, 2001-2004, 2006-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/c-strcase.h Copyright: 1995-1996, 2001, 2003, 2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/string.in.h Copyright: 1995-1996, 2001-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/md5.h Copyright: 1995-1997, 1999-2001, 2004-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/md5.c Copyright: 1995-1997, 1999-2001, 2005-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/md2.c, ./lib/md4.c +Files: ./lib/md2.c ./lib/md4.c Copyright: 1995-1997, 1999-2003, 2005-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/gettext.h Copyright: 1995-1998, 2000-2002, 2004-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/argz.c Copyright: 1995-1998, 2000-2002, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/argz.in.h Copyright: 1995-2000, 2004, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/lcmessage.m4 Copyright: 1995-2002, 2004-2005, 2008, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/nls.m4 Copyright: 1995-2003, 2005-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/localename.c, ./m4/gettext.m4, ./m4/intl.m4, ./m4/po.m4 +Files: ./lib/localename.c ./m4/gettext.m4 ./m4/intl.m4 ./m4/po.m4 Copyright: 1995-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/getgroups.c Copyright: 1996, 1999, 2003, 2006-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/inet_pton.c Copyright: 1996,1999 by Internet Software Consortium / 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/getgroups.m4 Copyright: 1996-1997, 1999-2004, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/filenamecat.h Copyright: 1996-1997, 2003, 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/strndup.c Copyright: 1996-1998, 2001-2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/siglist.h Copyright: 1996-1999, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/regex.m4 Copyright: 1996-2001, 2003-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/progtest.m4 Copyright: 1996-2003, 2005, 2008, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/filenamecat-lgpl.c Copyright: 1996-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./build-aux/config.rpath Copyright: 1996-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/d-type.m4 Copyright: 1997, 1999-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/strverscmp.c Copyright: 1997, 2000, 2002, 2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/gai_strerror.c Copyright: 1997, 2001-2002, 2004-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/getaddrinfo.c Copyright: 1997, 2001-2002, 2004-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/realloc.c Copyright: 1997, 2003-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/chown.c Copyright: 1997, 2004-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/malloc.c Copyright: 1997-1998, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/pwrite.c Copyright: 1997-1999, 2002, 2011-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/chown.m4 Copyright: 1997-2001, 2003-2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/inttypes-pri.m4 Copyright: 1997-2002, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/uintmax_t.m4 Copyright: 1997-2004, 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/lstat.c Copyright: 1997-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/dirname.h Copyright: 1998, 2001, 2003-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/lchown.m4 Copyright: 1998, 2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/ptsname.c, ./lib/ptsname_r.c +Files: ./lib/ptsname.c ./lib/ptsname_r.c Copyright: 1998, 2002, 2010-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/unlockpt.c Copyright: 1998, 2010-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/stat-time.m4 Copyright: 1998-1999, 2001, 2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/mkostemp.c, ./lib/mkostemps.c, ./lib/mkstemp.c, ./lib/mkstemps.c +Files: ./lib/mkostemp.c ./lib/mkostemps.c ./lib/mkstemp.c ./lib/mkstemps.c Copyright: 1998-1999, 2001, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/des.c Copyright: 1998-1999, 2001-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/lchown.c Copyright: 1998-1999, 2002, 2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/c-strcasecmp.c, ./lib/c-strncasecmp.c +Files: ./lib/c-strcasecmp.c ./lib/c-strncasecmp.c Copyright: 1998-1999, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/strcasecmp.c, ./lib/strncasecmp.c +Files: ./lib/strcasecmp.c ./lib/strncasecmp.c Copyright: 1998-1999, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/pt_chown.c, ./lib/pty-private.h +Files: ./lib/pt_chown.c ./lib/pty-private.h Copyright: 1998-1999, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/grantpt.c Copyright: 1998-2002, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/getline.m4 Copyright: 1998-2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/check-version.c Copyright: 1998-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/mkdtemp.c Copyright: 1999, 2001-2003, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/asnprintf.c, ./lib/unistr/u-cpy.h, ./lib/unistr/u32-cpy.c +Files: ./lib/asnprintf.c ./lib/unistr/u-cpy.h ./lib/unistr/u32-cpy.c Copyright: 1999, 2002, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/strncat.c Copyright: 1999, 2002, 2006, 2010-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/asprintf.c Copyright: 1999, 2002, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/vasprintf.c Copyright: 1999, 2002, 2006-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/dup2.c Copyright: 1999, 2004-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/unistr/u8-mblen.c Copyright: 1999-2000, 2002, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/base32.c, ./lib/base64.c +Files: ./lib/base32.c ./lib/base64.c Copyright: 1999-2001, 2004-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/iconv.c Copyright: 1999-2001, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/mbrtowc.c Copyright: 1999-2002, 2005-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/unistr/u8-mbtouc-unsafe.c, ./lib/unistr/u8-mbtouc.c, ./lib/unistr/u8-mbtoucr.c +Files: ./lib/unistr/u8-mbtouc-unsafe.c ./lib/unistr/u8-mbtouc.c ./lib/unistr/u8-mbtoucr.c Copyright: 1999-2002, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/physmem.h Copyright: 2000, 2003, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/spawn.in.h Copyright: 2000, 2003-2004, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/spawnattr_setflags.c Copyright: 2000, 2004, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/spawn_int.h, ./lib/spawnattr_getschedparam.c +Files: ./lib/spawn_int.h ./lib/spawnattr_getschedparam.c Copyright: 2000, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/ref-add.sin, ./lib/ref-del.sin, ./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 +Files: ./lib/ref-add.sin ./lib/ref-del.sin ./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, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/sha1.c Copyright: 2000-2001, 2003, 2004-2005, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/md2.h Copyright: 2000-2001, 2003, 2005, 2008, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/md4.h Copyright: 2000-2001, 2003, 2005, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/sha1.h Copyright: 2000-2001, 2003, 2005-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/physmem.c Copyright: 2000-2001, 2003, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/time_h.m4 Copyright: 2000-2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/dosname.h Copyright: 2000-2001, 2004-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/glibc2.m4, ./m4/glibc21.m4 +Files: ./m4/glibc2.m4 ./m4/glibc21.m4 Copyright: 2000-2002, 2004, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/unictype/bitmap.h Copyright: 2000-2002, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/codeset.m4 Copyright: 2000-2002, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/iconv.m4 Copyright: 2000-2002, 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/arctwo.h Copyright: 2000-2003, 2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/arcfour.c Copyright: 2000-2003, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/localcharset.h Copyright: 2000-2003, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/config.charset Copyright: 2000-2004, 2006-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/arcfour.h Copyright: 2000-2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/localcharset.c, ./lib/spawni.c +Files: ./lib/localcharset.c ./lib/spawni.c Copyright: 2000-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/fnmatch.m4 Copyright: 2000-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/binary-io.h Copyright: 2001, 2003, 2005, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/rename.m4 Copyright: 2001, 2003, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/mkdir.c Copyright: 2001, 2003, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/hash-pjw.c Copyright: 2001, 2003, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/hash-pjw.h Copyright: 2001, 2003, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/mkdir.m4 Copyright: 2001, 2003-2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/areadlink-with-size.c, ./m4/mkstemp.m4 +Files: ./lib/areadlink-with-size.c ./m4/mkstemp.m4 Copyright: 2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/anytostr.c, ./lib/dirfd.c +Files: ./lib/anytostr.c ./lib/dirfd.c Copyright: 2001, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/stdint.in.h Copyright: 2001-2002, 2004-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/unistr.in.h Copyright: 2001-2002, 2005-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/unistr/u8-mbtouc-aux.c, ./lib/unistr/u8-mbtouc-unsafe-aux.c +Files: ./lib/unistr/u8-mbtouc-aux.c ./lib/unistr/u8-mbtouc-unsafe-aux.c Copyright: 2001-2002, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/signalblocking.m4 Copyright: 2001-2002, 2006-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/c-strcaseeq.h, ./lib/streq.h +Files: ./lib/c-strcaseeq.h ./lib/streq.h Copyright: 2001-2002, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/uninorm.in.h Copyright: 2001-2002, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/gettimeofday.m4 Copyright: 2001-2003, 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/rename.c Copyright: 2001-2003, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/gettimeofday.c Copyright: 2001-2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/sys_wait.in.h, ./lib/waitpid.c +Files: ./lib/sys_wait.in.h ./lib/waitpid.c Copyright: 2001-2003, 2005-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/mkdtemp.m4 Copyright: 2001-2003, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/poll.c, ./lib/stdbool.in.h +Files: ./lib/poll.c ./lib/stdbool.in.h Copyright: 2001-2003, 2006-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/poll.in.h Copyright: 2001-2003, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/uninorm/decomposition-table.h Copyright: 2001-2003, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/striconv.h Copyright: 2001-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/concat-filename.c, ./lib/findprog-lgpl.c, ./lib/pipe.c +Files: ./lib/concat-filename.c ./lib/findprog-lgpl.c ./lib/pipe.c Copyright: 2001-2004, 2006-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/filename.h Copyright: 2001-2004, 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/intprops.h Copyright: 2001-2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/dirfd.m4 Copyright: 2001-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/inttostr.h Copyright: 2001-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/iconveh.h, ./lib/striconveh.h +Files: ./lib/iconveh.h ./lib/striconveh.h Copyright: 2001-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/striconv.c Copyright: 2001-2007, 2010-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/stdint.m4 Copyright: 2001-2012 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/striconveh.c Copyright: 2001-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/exitfail.c Copyright: 2002, 2003, 2005, 2006, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/full-read.c Copyright: 2002, 2003, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/localcharset.m4 Copyright: 2002, 2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/strptime.c, ./m4/getpagesize.m4 +Files: ./lib/strptime.c ./m4/getpagesize.m4 Copyright: 2002, 2004-2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/striconveha.c, ./lib/uniconv.in.h, ./m4/dup2.m4 +Files: ./lib/striconveha.c ./lib/uniconv.in.h ./m4/dup2.m4 Copyright: 2002, 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/striconveha.h Copyright: 2002, 2005, 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/rmdir.m4 Copyright: 2002, 2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/unistr/u8-uctomb.c Copyright: 2002, 2005-2006, 2009, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/unistr/u32-uctomb.c, ./lib/unitypes.in.h, ./m4/safe-write.m4 +Files: ./lib/unistr/u32-uctomb.c ./lib/unitypes.in.h ./m4/safe-write.m4 Copyright: 2002, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/unictype.in.h, ./m4/strcase.m4, ./m4/strverscmp.m4 +Files: ./lib/unictype.in.h ./m4/strcase.m4 ./m4/strverscmp.m4 Copyright: 2002, 2005-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/uninorm/composition.c Copyright: 2002, 2006, 2009, 2011-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/unictype/combiningclass.c Copyright: 2002, 2006, 2009-2013 Free Software Foundation, Inc -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/safe-read.h, ./lib/unistr/u8-strlen.c +Files: ./lib/safe-read.h ./lib/unistr/u8-strlen.c Copyright: 2002, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/unictype/bidi_of.c Copyright: 2002, 2006, 2011-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/uniconv/u-strconv-from-enc.h, ./lib/uniconv/u8-conv-from-enc.c, ./lib/uniconv/u8-strconv-from-enc.c, ./lib/uniconv/u8-strconv-from-locale.c, ./lib/unictype/categ_M.c, ./lib/unictype/categ_of.c, ./lib/unictype/categ_test.c, ./lib/unistr/u32-mbtouc-unsafe.c, ./lib/unistr/u32-to-u8.c, ./lib/unistr/u8-check.c, ./lib/unistr/u8-prev.c, ./lib/unistr/u8-to-u32.c, ./lib/unistr/u8-uctomb-aux.c +Files: ./lib/uniconv/u-strconv-from-enc.h ./lib/uniconv/u8-conv-from-enc.c ./lib/uniconv/u8-strconv-from-enc.c ./lib/uniconv/u8-strconv-from-locale.c ./lib/unictype/categ_M.c ./lib/unictype/categ_of.c ./lib/unictype/categ_test.c ./lib/unistr/u32-mbtouc-unsafe.c ./lib/unistr/u32-to-u8.c ./lib/unistr/u8-check.c ./lib/unistr/u8-prev.c ./lib/unistr/u8-to-u32.c ./lib/unistr/u8-uctomb-aux.c Copyright: 2002, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/stpcpy.m4 Copyright: 2002, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/intdiv0.m4 Copyright: 2002, 2007-2008, 2010-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/strerror.m4, ./m4/strerror_r.m4 +Files: ./m4/strerror.m4 ./m4/strerror_r.m4 Copyright: 2002, 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/gethostname.m4 Copyright: 2002, 2008, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/memset.m4 Copyright: 2002, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/exitfail.h, ./lib/full-read.h, ./lib/safe-write.c, ./lib/safe-write.h +Files: ./lib/exitfail.h ./lib/full-read.h ./lib/safe-write.c ./lib/safe-write.h Copyright: 2002, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/ansi-c++.m4 Copyright: 2002-2003, 2005, 2010-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/physmem.m4 Copyright: 2002-2003, 2005-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/raise.c, ./lib/regex.c, ./m4/getpass.m4, ./m4/getugroups.m4, ./m4/safe-read.m4 +Files: ./lib/raise.c ./lib/regex.c ./m4/getpass.m4 ./m4/getugroups.m4 ./m4/safe-read.m4 Copyright: 2002-2003, 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/mktime.m4, ./m4/stpncpy.m4, ./m4/strnlen.m4 +Files: ./m4/mktime.m4 ./m4/stpncpy.m4 ./m4/strnlen.m4 Copyright: 2002-2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/strndup.m4 Copyright: 2002-2003, 2005-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/vasprintf.m4 Copyright: 2002-2003, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/strpbrk.m4 Copyright: 2002-2003, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/math.in.h Copyright: 2002-2003, 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/full-write.h Copyright: 2002-2003, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/alloca.m4, ./m4/strtok_r.m4 +Files: ./m4/alloca.m4 ./m4/strtok_r.m4 Copyright: 2002-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/strsep.m4 Copyright: 2002-2004, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/memcmp.m4, ./m4/memmem.m4, ./m4/snprintf.m4, ./m4/vsnprintf.m4 +Files: ./m4/memcmp.m4 ./m4/memmem.m4 ./m4/snprintf.m4 ./m4/vsnprintf.m4 Copyright: 2002-2004, 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/memchr.m4, ./m4/strncat.m4 +Files: ./m4/memchr.m4 ./m4/strncat.m4 Copyright: 2002-2004, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/gc.h Copyright: 2002-2005, 2007-2008, 2011-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/intmax.m4 Copyright: 2002-2005, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/getopt.m4, ./m4/md4.m4, ./m4/md5.m4, ./m4/sha1.m4 +Files: ./m4/getopt.m4 ./m4/md4.m4 ./m4/md5.m4 ./m4/sha1.m4 Copyright: 2002-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/gc-pbkdf2-sha1.c, ./m4/clock_time.m4, ./m4/dirname.m4, ./m4/read-file.m4, ./m4/stdbool.m4 +Files: ./lib/gc-pbkdf2-sha1.c ./m4/clock_time.m4 ./m4/dirname.m4 ./m4/read-file.m4 ./m4/stdbool.m4 Copyright: 2002-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/gc-gnulib.c, ./lib/gc-libgcrypt.c, ./lib/regcomp.c, ./lib/regex_internal.c, ./lib/regex_internal.h, ./lib/regexec.c, ./m4/euidaccess.m4, ./m4/strdup.m4 +Files: ./lib/gc-gnulib.c ./lib/gc-libgcrypt.c ./lib/regcomp.c ./lib/regex_internal.c ./lib/regex_internal.h ./lib/regexec.c ./m4/euidaccess.m4 ./m4/strdup.m4 Copyright: 2002-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/sysexits.m4 Copyright: 2003, 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/size_max.m4 Copyright: 2003, 2005-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/poll.m4 Copyright: 2003, 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/locale-fr.m4, ./m4/locale-ja.m4, ./m4/locale-zh.m4 +Files: ./m4/locale-fr.m4 ./m4/locale-ja.m4 ./m4/locale-zh.m4 Copyright: 2003, 2005-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/getndelim2.m4 Copyright: 2003, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/time_r.c Copyright: 2003, 2006-2007, 2010-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/sysexits.in.h, ./m4/extensions.m4, ./m4/time_r.m4 +Files: ./lib/sysexits.in.h ./m4/extensions.m4 ./m4/time_r.m4 Copyright: 2003, 2006-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/mempcpy.c, ./m4/printf-posix.m4, ./m4/strchrnul.m4, ./m4/timegm.m4 +Files: ./lib/mempcpy.c ./m4/printf-posix.m4 ./m4/strchrnul.m4 ./m4/timegm.m4 Copyright: 2003, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/strchrnul.c, ./m4/rawmemchr.m4 +Files: ./lib/strchrnul.c ./m4/rawmemchr.m4 Copyright: 2003, 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/xsize.h Copyright: 2003, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/alignof.h, ./lib/getndelim2.h +Files: ./lib/alignof.h ./lib/getndelim2.h Copyright: 2003-2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/mempcpy.m4 Copyright: 2003-2004, 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/xsize.m4 Copyright: 2003-2004, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/arctwo.c Copyright: 2003-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/unistd.in.h Copyright: 2003-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/errno_h.m4 Copyright: 2004, 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/base32.m4, ./m4/base64.m4, ./m4/sockpfaf.m4 +Files: ./m4/base32.m4 ./m4/base64.m4 ./m4/sockpfaf.m4 Copyright: 2004, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/snprintf.c, ./lib/vsnprintf.c +Files: ./lib/snprintf.c ./lib/vsnprintf.c Copyright: 2004, 2006-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/strsep.c Copyright: 2004, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/stdio.in.h Copyright: 2004, 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/cloexec.h, ./lib/getpass.h +Files: ./lib/cloexec.h ./lib/getpass.h Copyright: 2004, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/base32.h, ./lib/base64.h, ./m4/inttostr.m4 +Files: ./lib/base32.h ./lib/base64.h ./m4/inttostr.m4 Copyright: 2004-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/argz.m4, ./m4/getaddrinfo.m4, ./m4/intlmacosx.m4 +Files: ./m4/argz.m4 ./m4/getaddrinfo.m4 ./m4/intlmacosx.m4 Copyright: 2004-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/verify.h Copyright: 2005, 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/byteswap.in.h, ./lib/des.h, ./lib/stat-time.h, ./m4/byteswap.m4, ./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 +Files: ./lib/byteswap.in.h ./lib/des.h ./lib/stat-time.h ./m4/byteswap.m4 ./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 Copyright: 2005, 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/glthread/tls.h, ./m4/strcasestr.m4 +Files: ./lib/glthread/tls.h ./m4/strcasestr.m4 Copyright: 2005, 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/visibility.m4 Copyright: 2005, 2008, 2010-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/sha256.m4, ./m4/tls.m4 +Files: ./m4/sha256.m4 ./m4/tls.m4 Copyright: 2005, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/c-strcasestr.h, ./lib/check-version.h, ./lib/hmac.h, ./lib/memxor.h, ./lib/rijndael-alg-fst.h, ./lib/rijndael-api-fst.h, ./lib/strnlen1.h, ./m4/minmax.m4 +Files: ./lib/c-strcasestr.h ./lib/check-version.h ./lib/hmac.h ./lib/memxor.h ./lib/rijndael-alg-fst.h ./lib/rijndael-api-fst.h ./lib/strnlen1.h ./m4/minmax.m4 Copyright: 2005, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/arpa_inet.in.h, ./lib/sha256.c, ./lib/sha256.h, ./lib/sha512.c, ./lib/sha512.h, ./m4/inet_ntop.m4, ./m4/sha512.m4 +Files: ./lib/arpa_inet.in.h ./lib/sha256.c ./lib/sha256.h ./lib/sha512.c ./lib/sha512.h ./m4/inet_ntop.m4 ./m4/sha512.m4 Copyright: 2005-2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/inet_ntop.c Copyright: 2005-2006, 2008-2013 Free Software Foundation, Inc. / 1996-1999 by Internet Software Consortium -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/hmac-md5.c, ./lib/hmac-sha1.c, ./lib/memxor.c, ./lib/rijndael-alg-fst.c, ./lib/rijndael-api-fst.c, ./lib/size_max.h, ./lib/strnlen1.c, ./m4/arctwo.m4, ./m4/gc.m4 +Files: ./lib/hmac-md5.c ./lib/hmac-sha1.c ./lib/memxor.c ./lib/rijndael-alg-fst.c ./lib/rijndael-api-fst.c ./lib/size_max.h ./lib/strnlen1.c ./m4/arctwo.m4 ./m4/gc.m4 Copyright: 2005-2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/getline.c, ./lib/getlogin_r.c, ./lib/glob.in.h, ./lib/strnlen.c, ./m4/getdelim.m4, ./m4/getlogin_r.m4, ./m4/glob.m4 +Files: ./lib/getline.c ./lib/getlogin_r.c ./lib/glob.in.h ./lib/strnlen.c ./m4/getdelim.m4 ./m4/getlogin_r.m4 ./m4/glob.m4 Copyright: 2005-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/c-strcasestr.c, ./lib/glthread/cond.h, ./lib/glthread/lock.c, ./lib/glthread/lock.h, ./lib/glthread/thread.c, ./lib/glthread/thread.h, ./lib/glthread/threadlib.c, ./lib/glthread/tls.c, ./lib/glthread/yield.h, ./lib/strcasestr.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 +Files: ./lib/c-strcasestr.c ./lib/glthread/cond.h ./lib/glthread/lock.c ./lib/glthread/lock.h ./lib/glthread/thread.c ./lib/glthread/thread.h ./lib/glthread/threadlib.c ./lib/glthread/tls.c ./lib/glthread/yield.h ./lib/strcasestr.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-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/arpa_inet_h.m4, ./m4/inet_pton.m4, ./m4/stdarg.m4 +Files: ./m4/arpa_inet_h.m4 ./m4/inet_pton.m4 ./m4/stdarg.m4 Copyright: 2006, 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/memxor.m4 Copyright: 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/read-file.c, ./lib/read-file.h, ./lib/same-inode.h, ./lib/tempname.h, ./lib/u64.h, ./m4/fcntl-o.m4, ./m4/intldir.m4 +Files: ./lib/read-file.c ./lib/read-file.h ./lib/same-inode.h ./lib/tempname.h ./lib/u64.h ./m4/fcntl-o.m4 ./m4/intldir.m4 Copyright: 2006, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/fcntl_h.m4, ./m4/selinux-context-h.m4, ./m4/selinux-selinux-h.m4, ./m4/tempname.m4 +Files: ./m4/fcntl_h.m4 ./m4/selinux-context-h.m4 ./m4/selinux-selinux-h.m4 ./m4/tempname.m4 Copyright: 2006-2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/net_if_h.m4 Copyright: 2006-2013 Free Software Foundation, Inc -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/dirent.in.h, ./lib/fcntl.in.h, ./lib/inttypes.in.h, ./lib/signal.in.h, ./lib/sigprocmask.c, ./lib/wctype.in.h, ./m4/absolute-header.m4, ./m4/include_next.m4, ./m4/inttypes.m4, ./m4/netinet_in_h.m4, ./m4/sys_select_h.m4, ./m4/sys_stat_h.m4, ./m4/unistd_h.m4, ./m4/wctype_h.m4 +Files: ./lib/dirent.in.h ./lib/fcntl.in.h ./lib/inttypes.in.h ./lib/signal.in.h ./lib/sigprocmask.c ./lib/wctype.in.h ./m4/absolute-header.m4 ./m4/include_next.m4 ./m4/inttypes.m4 ./m4/netinet_in_h.m4 ./m4/sys_select_h.m4 ./m4/sys_stat_h.m4 ./m4/unistd_h.m4 ./m4/wctype_h.m4 Copyright: 2006-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/fseek.c, ./lib/ftello.c, ./lib/getpagesize.c, ./lib/getugroups.h, ./lib/iconv_close.c, ./lib/iconv_open.c, ./lib/localename.h, ./lib/lseek.c, ./lib/mgetgroups.h, ./lib/sleep.c, ./lib/unictype/categ_none.c, ./m4/count-one-bits.m4, ./m4/float_h.m4, ./m4/fpurge.m4, ./m4/freading.m4, ./m4/fseek.m4, ./m4/ftell.m4, ./m4/gc-camellia.m4, ./m4/locale_h.m4, ./m4/localename.m4, ./m4/lseek.m4, ./m4/strings_h.m4, ./m4/strptime.m4, ./m4/sys_time_h.m4 +Files: ./lib/fseek.c ./lib/ftello.c ./lib/getpagesize.c ./lib/getugroups.h ./lib/iconv_close.c ./lib/iconv_open.c ./lib/localename.h ./lib/lseek.c ./lib/mgetgroups.h ./lib/sleep.c ./lib/unictype/categ_none.c ./m4/count-one-bits.m4 ./m4/float_h.m4 ./m4/fpurge.m4 ./m4/freading.m4 ./m4/fseek.m4 ./m4/ftell.m4 ./m4/gc-camellia.m4 ./m4/locale_h.m4 ./m4/localename.m4 ./m4/lseek.m4 ./m4/strings_h.m4 ./m4/strptime.m4 ./m4/sys_time_h.m4 Copyright: 2007, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/unictype/scripts.c Copyright: 2007, 2009-2013 Free Software Foundation, Inc.b -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/stdio-impl.h Copyright: 2007-2008, 2010-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./m4/mgetgroups.m4, ./m4/string_h.m4 +Files: ./m4/mgetgroups.m4 ./m4/string_h.m4 Copyright: 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/net_if.in.h Copyright: 2007-2013 Free Software Foundation, Inc -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/count-one-bits.h, ./lib/fflush.c, ./lib/float.in.h, ./lib/fopen.c, ./lib/fpurge.c, ./lib/freadahead.c, ./lib/freadahead.h, ./lib/freading.c, ./lib/freading.h, ./lib/freadptr.c, ./lib/freadptr.h, ./lib/freadseek.c, ./lib/freadseek.h, ./lib/fseeko.c, ./lib/ftell.c, ./lib/iconv.in.h, ./lib/locale.in.h, ./lib/mgetgroups.c, ./lib/netinet_in.in.h, ./lib/nl_langinfo.c, ./lib/open.c, ./lib/search.in.h, ./lib/strerror.c, ./lib/strings.in.h, ./lib/sys_file.in.h, ./lib/sys_select.in.h, ./lib/sys_time.in.h, ./lib/time.in.h, ./lib/wchar.in.h, ./m4/fflush.m4, ./m4/fopen.m4, ./m4/fseeko.m4, ./m4/ftello.m4, ./m4/iconv_h.m4, ./m4/iconv_open.m4, ./m4/open.m4, ./m4/search_h.m4, ./m4/signal_h.m4, ./m4/sleep.m4, ./m4/stdio_h.m4, ./m4/stdlib_h.m4, ./m4/wchar_h.m4 +Files: ./lib/count-one-bits.h ./lib/fflush.c ./lib/float.in.h ./lib/fopen.c ./lib/fpurge.c ./lib/freadahead.c ./lib/freadahead.h ./lib/freading.c ./lib/freading.h ./lib/freadptr.c ./lib/freadptr.h ./lib/freadseek.c ./lib/freadseek.h ./lib/fseeko.c ./lib/ftell.c ./lib/iconv.in.h ./lib/locale.in.h ./lib/mgetgroups.c ./lib/netinet_in.in.h ./lib/nl_langinfo.c ./lib/open.c ./lib/search.in.h ./lib/strerror.c ./lib/strings.in.h ./lib/sys_file.in.h ./lib/sys_select.in.h ./lib/sys_time.in.h ./lib/time.in.h ./lib/wchar.in.h ./m4/fflush.m4 ./m4/fopen.m4 ./m4/fseeko.m4 ./m4/ftello.m4 ./m4/iconv_h.m4 ./m4/iconv_open.m4 ./m4/open.m4 ./m4/search_h.m4 ./m4/signal_h.m4 ./m4/sleep.m4 ./m4/stdio_h.m4 ./m4/stdlib_h.m4 ./m4/wchar_h.m4 Copyright: 2007-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/fclose.c, ./lib/w32sock.h +Files: ./lib/fclose.c ./lib/w32sock.h Copyright: 2008, 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/btowc.c, ./m4/hostent.m4, ./m4/mbsinit.m4 +Files: ./lib/btowc.c ./m4/hostent.m4 ./m4/mbsinit.m4 Copyright: 2008, 2010-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/read.c, ./lib/stdio-read.c +Files: ./lib/read.c ./lib/stdio-read.c Copyright: 2008-2013 Free Software Foundation, Inc -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./build-aux/snippet/unused-parameter.h, ./lib/accept.c, ./lib/bind.c, ./lib/bitrotate.h, ./lib/close.c, ./lib/connect.c, ./lib/errno.in.h, ./lib/flock.c, ./lib/fsync.c, ./lib/getdtablesize.c, ./lib/getpeername.c, ./lib/getsockname.c, ./lib/getsockopt.c, ./lib/glthread/cond.c, ./lib/ignore-value.h, ./lib/ioctl.c, ./lib/iswblank.c, ./lib/listen.c, ./lib/mbsinit.c, ./lib/mbsrtowcs-impl.h, ./lib/mbsrtowcs-state.c, ./lib/mbsrtowcs.c, ./lib/memchr2.h, ./lib/netdb.in.h, ./lib/parse-duration.c, ./lib/parse-duration.h, ./lib/perror.c, ./lib/rawmemchr.c, ./lib/recv.c, ./lib/recvfrom.c, ./lib/sched.in.h, ./lib/se-selinux.in.h, ./lib/select.c, ./lib/send.c, ./lib/sendto.c, ./lib/setsockopt.c, ./lib/shutdown.c, ./lib/sig-handler.h, ./lib/sigaction.c, ./lib/socket.c, ./lib/sockets.c, ./lib/sockets.h, ./lib/stdarg.in.h, ./lib/stdio-write.c, ./lib/str-two-way.h, ./lib/sys_ioctl.in.h, ./lib/sys_times.in.h, ./lib/times.c, ./lib/wcrtomb.c, ./lib/write.c, ./m4/btowc.m4, ./m4/close.m4, ./m4/cond.m4, ./m4/dirent_h.m4, ./m4/fclose.m4, ./m4/fdatasync.m4, ./m4/flock.m4, ./m4/fsync.m4, ./m4/getdtablesize.m4, ./m4/ioctl.m4, ./m4/mbsrtowcs.m4, ./m4/netdb_h.m4, ./m4/perror.m4, ./m4/posix_spawn.m4, ./m4/random_r.m4, ./m4/sched_h.m4, ./m4/servent.m4, ./m4/sigaction.m4, ./m4/sigpipe.m4, ./m4/socketlib.m4, ./m4/sockets.m4, ./m4/spawn_h.m4, ./m4/strsignal.m4, ./m4/strstr.m4, ./m4/sys_file_h.m4, ./m4/sys_ioctl_h.m4, ./m4/sys_times_h.m4, ./m4/sys_wait_h.m4, ./m4/thread.m4, ./m4/wcrtomb.m4, ./m4/write.m4 +Files: ./build-aux/snippet/unused-parameter.h ./lib/accept.c ./lib/bind.c ./lib/bitrotate.h ./lib/close.c ./lib/connect.c ./lib/errno.in.h ./lib/flock.c ./lib/fsync.c ./lib/getdtablesize.c ./lib/getpeername.c ./lib/getsockname.c ./lib/getsockopt.c ./lib/glthread/cond.c ./lib/ignore-value.h ./lib/ioctl.c ./lib/iswblank.c ./lib/listen.c ./lib/mbsinit.c ./lib/mbsrtowcs-impl.h ./lib/mbsrtowcs-state.c ./lib/mbsrtowcs.c ./lib/memchr2.h ./lib/netdb.in.h ./lib/parse-duration.c ./lib/parse-duration.h ./lib/perror.c ./lib/rawmemchr.c ./lib/recv.c ./lib/recvfrom.c ./lib/sched.in.h ./lib/se-selinux.in.h ./lib/select.c ./lib/send.c ./lib/sendto.c ./lib/setsockopt.c ./lib/shutdown.c ./lib/sig-handler.h ./lib/sigaction.c ./lib/socket.c ./lib/sockets.c ./lib/sockets.h ./lib/stdarg.in.h ./lib/stdio-write.c ./lib/str-two-way.h ./lib/sys_ioctl.in.h ./lib/sys_times.in.h ./lib/times.c ./lib/wcrtomb.c ./lib/write.c ./m4/btowc.m4 ./m4/close.m4 ./m4/cond.m4 ./m4/dirent_h.m4 ./m4/fclose.m4 ./m4/fdatasync.m4 ./m4/flock.m4 ./m4/fsync.m4 ./m4/getdtablesize.m4 ./m4/ioctl.m4 ./m4/mbsrtowcs.m4 ./m4/netdb_h.m4 ./m4/perror.m4 ./m4/posix_spawn.m4 ./m4/random_r.m4 ./m4/sched_h.m4 ./m4/servent.m4 ./m4/sigaction.m4 ./m4/sigpipe.m4 ./m4/socketlib.m4 ./m4/sockets.m4 ./m4/spawn_h.m4 ./m4/strsignal.m4 ./m4/strstr.m4 ./m4/sys_file_h.m4 ./m4/sys_ioctl_h.m4 ./m4/sys_times_h.m4 ./m4/sys_wait_h.m4 ./m4/thread.m4 ./m4/wcrtomb.m4 ./m4/write.m4 Copyright: 2008-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./lib/uninorm/composition-table.gperf Copyright: 2009 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./build-aux/snippet/arg-nonnull.h, ./lib/array-mergesort.h, ./lib/ctype.in.h, ./lib/fcntl.c, ./lib/fd-hook.c, ./lib/fd-hook.h, ./lib/getfilecon.c, ./lib/isblank.c, ./lib/langinfo.in.h, ./lib/link.c, ./lib/nproc.c, ./lib/nproc.h, ./lib/pipe2.c, ./lib/pread.c, ./lib/pthread.in.h, ./lib/safe-alloc.c, ./lib/safe-alloc.h, ./lib/stat.c, ./lib/stddef.in.h, ./lib/sys_utsname.in.h, ./lib/uname.c, ./lib/uninorm/canonical-decomposition.c, ./lib/uninorm/decompose-internal.c, ./lib/uninorm/decompose-internal.h, ./lib/uninorm/decomposition-table.c, ./lib/uninorm/nfc.c, ./lib/uninorm/nfd.c, ./lib/uninorm/normalize-internal.h, ./lib/uninorm/u-normalize-internal.h, ./lib/uninorm/u32-normalize.c, ./lib/unlink.c, ./lib/usleep.c, ./m4/ctype.m4, ./m4/fcntl.m4, ./m4/isblank.m4, ./m4/langinfo_h.m4, ./m4/link.m4, ./m4/mkostemp.m4, ./m4/mkostemps.m4, ./m4/mkstemps.m4, ./m4/nl_langinfo.m4, ./m4/nproc.m4, ./m4/pipe2.m4, ./m4/pread.m4, ./m4/pthread.m4, ./m4/pty_h.m4, ./m4/safe-alloc.m4, ./m4/select.m4, ./m4/stat.m4, ./m4/stddef_h.m4, ./m4/sys_utsname_h.m4, ./m4/times.m4, ./m4/uname.m4, ./m4/unlink.m4, ./m4/usleep.m4 +Files: ./build-aux/snippet/arg-nonnull.h ./lib/array-mergesort.h ./lib/ctype.in.h ./lib/fcntl.c ./lib/fd-hook.c ./lib/fd-hook.h ./lib/getfilecon.c ./lib/isblank.c ./lib/langinfo.in.h ./lib/link.c ./lib/nproc.c ./lib/nproc.h ./lib/pipe2.c ./lib/pread.c ./lib/pthread.in.h ./lib/safe-alloc.c ./lib/safe-alloc.h ./lib/stat.c ./lib/stddef.in.h ./lib/sys_utsname.in.h ./lib/uname.c ./lib/uninorm/canonical-decomposition.c ./lib/uninorm/decompose-internal.c ./lib/uninorm/decompose-internal.h ./lib/uninorm/decomposition-table.c ./lib/uninorm/nfc.c ./lib/uninorm/nfd.c ./lib/uninorm/normalize-internal.h ./lib/uninorm/u-normalize-internal.h ./lib/uninorm/u32-normalize.c ./lib/unlink.c ./lib/usleep.c ./m4/ctype.m4 ./m4/fcntl.m4 ./m4/isblank.m4 ./m4/langinfo_h.m4 ./m4/link.m4 ./m4/mkostemp.m4 ./m4/mkostemps.m4 ./m4/mkstemps.m4 ./m4/nl_langinfo.m4 ./m4/nproc.m4 ./m4/pipe2.m4 ./m4/pread.m4 ./m4/pthread.m4 ./m4/pty_h.m4 ./m4/safe-alloc.m4 ./m4/select.m4 ./m4/stat.m4 ./m4/stddef_h.m4 ./m4/sys_utsname_h.m4 ./m4/times.m4 ./m4/uname.m4 ./m4/unlink.m4 ./m4/usleep.m4 Copyright: 2009-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./build-aux/snippet/c++defs.h, ./build-aux/snippet/warn-on-use.h, ./lib/getlogin.c, ./lib/openpty.c, ./lib/posix_openpt.c, ./lib/pty.in.h, ./lib/strerror-override.c, ./lib/strerror-override.h, ./lib/strerror_r.c, ./lib/termios.in.h, ./lib/ttyname_r.c, ./m4/asm-underscore.m4, ./m4/configmake.m4, ./m4/getlogin.m4, ./m4/grantpt.m4, ./m4/ldexp.m4, ./m4/libunistring-base.m4, ./m4/pipe.m4, ./m4/poll_h.m4, ./m4/ptsname.m4, ./m4/ptsname_r.m4, ./m4/pty.m4, ./m4/pwrite.m4, ./m4/termios_h.m4, ./m4/ttyname_r.m4, ./m4/unlockpt.m4, ./m4/waitpid.m4, ./m4/warn-on-use.m4 +Files: ./build-aux/snippet/c++defs.h ./build-aux/snippet/warn-on-use.h ./lib/getlogin.c ./lib/openpty.c ./lib/posix_openpt.c ./lib/pty.in.h ./lib/strerror-override.c ./lib/strerror-override.h ./lib/strerror_r.c ./lib/termios.in.h ./lib/ttyname_r.c ./m4/asm-underscore.m4 ./m4/configmake.m4 ./m4/getlogin.m4 ./m4/grantpt.m4 ./m4/ldexp.m4 ./m4/libunistring-base.m4 ./m4/pipe.m4 ./m4/poll_h.m4 ./m4/ptsname.m4 ./m4/ptsname_r.m4 ./m4/pty.m4 ./m4/pwrite.m4 ./m4/termios_h.m4 ./m4/ttyname_r.m4 ./m4/unlockpt.m4 ./m4/waitpid.m4 ./m4/warn-on-use.m4 Copyright: 2010-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./m4/sys_types_h.m4 Copyright: 2011-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/getcwd-lgpl.c, ./lib/mbtowc-impl.h, ./lib/mbtowc.c, ./lib/nonblocking.c, ./lib/nonblocking.h, ./lib/passfd.c, ./lib/passfd.h, ./lib/sethostname.c, ./lib/unictype/joiningtype_of.c, ./lib/wctomb-impl.h, ./lib/wctomb.c, ./m4/sethostname.m4 +Files: ./lib/getcwd-lgpl.c ./lib/mbtowc-impl.h ./lib/mbtowc.c ./lib/nonblocking.c ./lib/nonblocking.h ./lib/passfd.c ./lib/passfd.h ./lib/sethostname.c ./lib/unictype/joiningtype_of.c ./lib/wctomb-impl.h ./lib/wctomb.c ./m4/sethostname.m4 Copyright: 2011-2013 Free Software Foundation, Inc -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/assert.in.h, ./lib/dup.c, ./lib/fdatasync.c, ./lib/fdopen.c, ./lib/ffs.c, ./lib/ffsl.h, ./lib/float.c, ./lib/fstat.c, ./lib/integer_length.c, ./lib/integer_length.h, ./lib/integer_length_l.c, ./lib/integer_length_ll.c, ./lib/itold.c, ./lib/msvc-inval.c, ./lib/msvc-inval.h, ./lib/msvc-nothrow.c, ./lib/msvc-nothrow.h, ./lib/pselect.c, ./lib/pthread_sigmask.c, ./lib/stdalign.in.h, ./lib/sys_types.in.h, ./lib/sys_uio.in.h, ./m4/assert_h.m4, ./m4/dup.m4, ./m4/dup2-obsolete.m4, ./m4/fdopen.m4, ./m4/ffs.m4, ./m4/ffsl.m4, ./m4/ffsll.m4, ./m4/fstat.m4, ./m4/iswblank.m4, ./m4/mbtowc.m4, ./m4/memchr-obsolete.m4, ./m4/msvc-inval.m4, ./m4/msvc-nothrow.m4, ./m4/nonblocking.m4, ./m4/passfd.m4, ./m4/posix_openpt.m4, ./m4/pselect.m4, ./m4/pthread_sigmask.m4, ./m4/raise.m4, ./m4/read.m4, ./m4/stdalign.m4, ./m4/strtod-obsolete.m4, ./m4/sys_uio_h.m4, ./m4/timer_time.m4, ./m4/wctomb.m4 +Files: ./lib/assert.in.h ./lib/dup.c ./lib/fdatasync.c ./lib/fdopen.c ./lib/ffs.c ./lib/ffsl.h ./lib/float.c ./lib/fstat.c ./lib/integer_length.c ./lib/integer_length.h ./lib/integer_length_l.c ./lib/integer_length_ll.c ./lib/itold.c ./lib/msvc-inval.c ./lib/msvc-inval.h ./lib/msvc-nothrow.c ./lib/msvc-nothrow.h ./lib/pselect.c ./lib/pthread_sigmask.c ./lib/stdalign.in.h ./lib/sys_types.in.h ./lib/sys_uio.in.h ./m4/assert_h.m4 ./m4/dup.m4 ./m4/dup2-obsolete.m4 ./m4/fdopen.m4 ./m4/ffs.m4 ./m4/ffsl.m4 ./m4/ffsll.m4 ./m4/fstat.m4 ./m4/iswblank.m4 ./m4/mbtowc.m4 ./m4/memchr-obsolete.m4 ./m4/msvc-inval.m4 ./m4/msvc-nothrow.m4 ./m4/nonblocking.m4 ./m4/passfd.m4 ./m4/posix_openpt.m4 ./m4/pselect.m4 ./m4/pthread_sigmask.m4 ./m4/raise.m4 ./m4/read.m4 ./m4/stdalign.m4 ./m4/strtod-obsolete.m4 ./m4/sys_uio_h.m4 ./m4/timer_time.m4 ./m4/wctomb.m4 Copyright: 2011-2013 Free Software Foundation, Inc. -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/count-leading-zeros.h, ./lib/execinfo.in.h, ./lib/hash-pjw-bare.c, ./lib/hash-pjw-bare.h, ./lib/isatty.c, ./lib/localeconv.c, ./lib/root-uid.h, ./lib/stdnoreturn.in.h, ./m4/count-leading-zeros.m4, ./m4/execinfo.m4, ./m4/freadahead.m4, ./m4/freadptr.m4, ./m4/freadseek.m4, ./m4/isatty.m4, ./m4/localeconv.m4, ./m4/off_t.m4, ./m4/stdnoreturn.m4 +Files: ./lib/count-leading-zeros.h ./lib/execinfo.in.h ./lib/hash-pjw-bare.c ./lib/hash-pjw-bare.h ./lib/isatty.c ./lib/localeconv.c ./lib/root-uid.h ./lib/stdnoreturn.in.h ./m4/count-leading-zeros.m4 ./m4/execinfo.m4 ./m4/freadahead.m4 ./m4/freadptr.m4 ./m4/freadseek.m4 ./m4/isatty.m4 ./m4/localeconv.m4 ./m4/off_t.m4 ./m4/stdnoreturn.m4 Copyright: 2012-2013 Free Software Foundation, Inc -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] -Files: ./lib/secure_getenv.c, ./m4/secure_getenv.m4 +Files: ./lib/secure_getenv.c ./m4/secure_getenv.m4 Copyright: 2013 Free Software Foundation, Inc -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] Files: ./tests/test-tsearch.c Copyright: 1997, 2000-2001, 2007-2013 Free Software Foundation, Inc. -License: LGPL-3+ [REF24] +License: LGPL-3+ [REF23] Files: ./tests/test-array-mergesort.c Copyright: 2009-2013 Free Software Foundation, Inc. -License: LGPL-3+ [REF24] +License: LGPL-3+ [REF23] -Files: ./tests/unigbrk/test-u16-grapheme-breaks.c, ./tests/unigbrk/test-u16-grapheme-next.c, ./tests/unigbrk/test-u16-grapheme-prev.c, ./tests/unigbrk/test-u32-grapheme-breaks.c, ./tests/unigbrk/test-u32-grapheme-next.c, ./tests/unigbrk/test-u32-grapheme-prev.c, ./tests/unigbrk/test-u8-grapheme-breaks.c, ./tests/unigbrk/test-u8-grapheme-next.c, ./tests/unigbrk/test-u8-grapheme-prev.c, ./tests/unigbrk/test-uc-is-grapheme-break.c +Files: ./tests/unigbrk/test-u16-grapheme-breaks.c ./tests/unigbrk/test-u16-grapheme-next.c ./tests/unigbrk/test-u16-grapheme-prev.c ./tests/unigbrk/test-u32-grapheme-breaks.c ./tests/unigbrk/test-u32-grapheme-next.c ./tests/unigbrk/test-u32-grapheme-prev.c ./tests/unigbrk/test-u8-grapheme-breaks.c ./tests/unigbrk/test-u8-grapheme-next.c ./tests/unigbrk/test-u8-grapheme-prev.c ./tests/unigbrk/test-uc-is-grapheme-break.c Copyright: 2010-2013 Free Software Foundation, Inc. -License: LGPL-3+ +License: LGPL-3+ [REF23] -Files: ./tests/unictype/test-combiningclass_byname.c, ./tests/unictype/test-joininggroup_byname.c, ./tests/unictype/test-joininggroup_name.c, ./tests/unictype/test-joiningtype_name.c +Files: ./tests/unictype/test-combiningclass_byname.c ./tests/unictype/test-joininggroup_byname.c ./tests/unictype/test-joininggroup_name.c ./tests/unictype/test-joiningtype_name.c Copyright: 2011 Free Software Foundation, Inc -License: LGPL-3+ +License: LGPL-3+ [REF23] -Files: ./tests/unictype/test-joininggroup_of.c, ./tests/unictype/test-joiningtype_byname.c, ./tests/unictype/test-joiningtype_longname.c, ./tests/unictype/test-joiningtype_of.c +Files: ./tests/unictype/test-joininggroup_of.c ./tests/unictype/test-joiningtype_byname.c ./tests/unictype/test-joiningtype_longname.c ./tests/unictype/test-joiningtype_of.c Copyright: 2011 Free Software Foundation, Inc. -License: LGPL-3+ +License: LGPL-3+ [REF23] Files: ./tests/test-safe-alloc.c Copyright: 2009-2013 Free Software Foundation, Inc. -License: LGPL-3.1+ +License: LGPL-3.1+ [REF33] Files: ./lib/alloca.c -License: PD [REF25] +Copyright: unknown +License: PD [REF24] Files: ./lib/memmove.c +Copyright: unknown +License: PD [REF25] + +Files: ./build-aux/mkinstalldirs +Copyright: unknown License: PD [REF26] Files: ./doc/regexprops-generic.texi Copyright: 1994, 1996, 1998, 2000-2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. License: PD [REF27] -Files: ./m4/atexit.m4, ./m4/memmove.m4 +Files: ./m4/atexit.m4 ./m4/memmove.m4 Copyright: 2002, 2009-2013 Free Software Foundation, Inc. License: PD [REF28] Files: ./lib/atexit.c +Copyright: unknown License: PD [REF29] Files: ./lib/dummy.c @@ -3182,15 +3205,16 @@ Files: ./doc/lgpl-2.1.texi Copyright: 1991, 1999 Free Software Foundation, Inc. License: other [REF31] -Files: ./doc/fdl-1.3.texi, ./doc/fdl.texi +Files: ./doc/fdl-1.3.texi ./doc/fdl.texi Copyright: 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. License: other [REF31] -Files: ./doc/agpl-3.0.texi, ./doc/gpl-3.0.texi, ./doc/lgpl-3.0.texi +Files: ./doc/agpl-3.0.texi ./doc/gpl-3.0.texi ./doc/lgpl-3.0.texi Copyright: 2007 Free Software Foundation, Inc. License: other [REF31] Files: ./build-aux/prefix-gnulib-mk +Copyright: unknown License: other [REF32] Files: ./m4/ssize_t.m4 @@ -3221,15 +3245,15 @@ Files: ./m4/socklen.m4 Copyright: 2005-2007, 2009-2013 Free Software Foundation, Inc. License: other [REF32] -Files: ./m4/inline.m4, ./m4/lib-ignore.m4 +Files: ./m4/inline.m4 ./m4/lib-ignore.m4 Copyright: 2006, 2009-2013 Free Software Foundation, Inc. License: other [REF32] -Files: ./m4/func.m4, ./m4/ld-output-def.m4, ./m4/ld-version-script.m4, ./m4/manywarnings.m4, ./m4/multiarch.m4, ./m4/valgrind-tests.m4, ./m4/warnings.m4 +Files: ./m4/func.m4 ./m4/ld-output-def.m4 ./m4/ld-version-script.m4 ./m4/manywarnings.m4 ./m4/multiarch.m4 ./m4/valgrind-tests.m4 ./m4/warnings.m4 Copyright: 2008-2013 Free Software Foundation, Inc. License: other [REF32] -Files: ./m4/extern-inline.m4, ./m4/non-recursive-gnulib-prefix-hack.m4 +Files: ./m4/extern-inline.m4 ./m4/non-recursive-gnulib-prefix-hack.m4 Copyright: 2012-2013 Free Software Foundation, Inc License: other [REF32] @@ -3261,36 +3285,31 @@ License: other [REF06] For documentation, see http://www.unicode.org/reports/tr44/ License: other [REF07] - Original author: Noah Friedman - Created: 1993-05-16 - Public domain. - -License: other [REF08] 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 [REF09] +License: other [REF08] 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 @@ -3298,19 +3317,19 @@ License: other [REF09] 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 [REF10] +License: other [REF09] 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 [REF11] +License: other [REF10] This file is free software; 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 [REF12] +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; @@ -3318,7 +3337,7 @@ License: GFDL-1.3+-NIV [REF12] 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 [REF13] +License: GFDL-1.3+-NIV [REF12] 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 @@ -3326,36 +3345,36 @@ License: GFDL-1.3+-NIV [REF13] Texts. A copy of the license is included in the ``GNU Free Documentation License'' file as part of this distribution. -License: GPL [REF14] +License: GPL [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 3 of the License, or (at your option) any later version. - + . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + . You should have received a copy of the GNU General Public License along with this program. If not, see . -License: GPL-2+ [REF15] +License: GPL-2+ [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 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-2+ and other [REF16] +License: GPL-2+ and other [REF15] 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 @@ -3373,21 +3392,21 @@ License: GPL-2+ and other [REF16] configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that program. -License: GPL-3+ [REF17] +License: GPL-3+ [REF16] This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. - + . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + . You should have received a copy of the GNU General Public License along with this program. If not, see . -License: GPL-3+ [REF18] +License: GPL-3+ [REF17] This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -3399,22 +3418,22 @@ License: GPL-3+ [REF18] You should have received a copy of the GNU General Public License along with this program. If not, see . -License: GPL-3+ [REF19] +License: GPL-3+ [REF18] This program is free software; you can redistribute 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+ [REF20] +License: GPL-3+ [REF19] This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -3426,7 +3445,7 @@ License: GPL-3+ [REF20] You should have received a copy of the GNU General Public License along with this program. If not, see . -License: GPL-3+ and other [REF21] +License: GPL-3+ and other [REF20] 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 @@ -3444,57 +3463,62 @@ License: GPL-3+ and other [REF21] configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that program. -License: LGPL [REF22] +License: LGPL [REF21] This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. - + . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + . You should have received a copy of the GNU General Public License along with this program. If not, see . -License: LGPL-2+ [REF23] +License: LGPL-2+ [REF22] 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-3+ [REF24] +License: LGPL-3+ [REF23] This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. - + . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. - + . You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . -License: PD [REF25] +License: PD [REF24] (Mostly) portable public-domain implementation -- D A Gwyn -License: PD [REF26] +License: PD [REF25] In the public domain. By David MacKenzie . +License: PD [REF26] + Original author: Noah Friedman + Created: 1993-05-16 + Public domain. + License: PD [REF27] Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or @@ -3516,12 +3540,12 @@ License: PD [REF30] it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. - + . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + . You should have received a copy of the GNU General Public License along with this program. If not, see . @@ -3534,15 +3558,16 @@ License: other [REF32] 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 3 LGPL-3 +License: LGPL-3.1+ [REF33] + 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 3.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 Lesser General Public + License along with this library; if not, see . -- 2.11.0