From: Bruno Haible Date: Wed, 22 Sep 2004 15:11:04 +0000 (+0000) Subject: Add a license tag to every module. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5143f4e91f44130093914be7cf05873c7d8a4369;p=pspp Add a license tag to every module. --- diff --git a/ChangeLog b/ChangeLog index 1872b0b48f..4ee30e33f3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-09-22 Bruno Haible + + * modules/*: Add 'License' field. + * gnulib-tool: Accept --extract-license option. + (func_get_license): New function. + 2004-09-21 Bruno Haible * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4. diff --git a/gnulib-tool b/gnulib-tool index b8a612aac2..53c2e840ac 100755 --- a/gnulib-tool +++ b/gnulib-tool @@ -22,7 +22,7 @@ progname=$0 package=gnulib -cvsdatestamp='$Date: 2004-09-21 14:22:48 $' +cvsdatestamp='$Date: 2004-09-22 15:11:04 $' last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` @@ -54,6 +54,7 @@ Usage: gnulib-tool --list gnulib-tool --extract-autoconf-snippet module gnulib-tool --extract-automake-snippet module gnulib-tool --extract-include-directive module + gnulib-tool --extract-license module gnulib-tool --extract-maintainer module Operation modes: @@ -72,6 +73,8 @@ Operation modes: --extract-autoconf-snippet extract the snippet for configure.ac --extract-automake-snippet extract the snippet for lib/Makefile.am --extract-include-directive extract the #include directive + --extract-license report the license terms of the source files + under lib/ --extract-maintainer report the maintainer(s) inside gnulib Options: @@ -285,6 +288,7 @@ sed_extract_prog=':[ ]*$/ { s/^configure\.ac:[ ]*$// s/^Makefile\.am:[ ]*$// s/^Include:[ ]*$// + s/^License:[ ]*$// s/^Maintainer:[ ]*$// tb p @@ -331,6 +335,12 @@ func_get_include_directive () sed -e 's/^\(["<]\)/#include \1/' } +# func_get_license module +func_get_license () +{ + sed -n -e "/^License$sed_extract_prog" < "$gnulib_dir/modules/$1" +} + # func_get_maintainer module func_get_maintainer () { @@ -928,6 +938,16 @@ case $mode in done ;; + extract-license ) + for module + do + func_verify_module + if test -n "$module"; then + func_get_license "$module" + fi + done + ;; + extract-maintainer ) for module do diff --git a/modules/TEMPLATE b/modules/TEMPLATE index 7115ff0e79..6f8b2c287f 100644 --- a/modules/TEMPLATE +++ b/modules/TEMPLATE @@ -10,5 +10,8 @@ Makefile.am: Include: +License: +GPL + Maintainer: diff --git a/modules/acl b/modules/acl index 875102588f..10fc9736a9 100644 --- a/modules/acl +++ b/modules/acl @@ -17,6 +17,9 @@ lib_SOURCES += acl.h acl.c Include: "acl.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/alloca b/modules/alloca index f93d5e3861..4675072ee5 100644 --- a/modules/alloca +++ b/modules/alloca @@ -26,5 +26,8 @@ MOSTLYCLEANFILES += alloca.h alloca.h-t Include: #include +License: +GPL + Maintainer: bug-gnulib@gnu.org diff --git a/modules/allocsa b/modules/allocsa index f6ab1e9115..db4920dc1f 100644 --- a/modules/allocsa +++ b/modules/allocsa @@ -21,5 +21,8 @@ lib_SOURCES += allocsa.h allocsa.c Include: #include "allocsa.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/argmatch b/modules/argmatch index 87a538086f..69197af90b 100644 --- a/modules/argmatch +++ b/modules/argmatch @@ -22,6 +22,9 @@ lib_SOURCES += argmatch.h argmatch.c Include: "argmatch.h" +License: +GPL + Maintainer: all diff --git a/modules/argp b/modules/argp index f1345ece29..e11ee028d4 100644 --- a/modules/argp +++ b/modules/argp @@ -39,6 +39,9 @@ lib_SOURCES += argp.h argp-ba.c argp-eexst.c \ Include: "argp.h" +License: +LGPL + Maintainer: Simon Josefsson, glibc diff --git a/modules/argz b/modules/argz index 5f59ae6be9..5d14e05496 100644 --- a/modules/argz +++ b/modules/argz @@ -26,5 +26,8 @@ MOSTLYCLEANFILES += argz.h argz.h-t Include: +License: +GPL + Maintainer: bug-libtool@gnu.org diff --git a/modules/assert b/modules/assert index f8c5bda259..900a1679ad 100644 --- a/modules/assert +++ b/modules/assert @@ -14,6 +14,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/atexit b/modules/atexit index 133b10c677..0528724e99 100644 --- a/modules/atexit +++ b/modules/atexit @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/backupfile b/modules/backupfile index e4d5846cba..c9c313fc2a 100644 --- a/modules/backupfile +++ b/modules/backupfile @@ -22,6 +22,9 @@ lib_SOURCES += backupfile.h backupfile.c Include: "backupfile.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/bcopy b/modules/bcopy index d618612273..be04d29bc0 100644 --- a/modules/bcopy +++ b/modules/bcopy @@ -13,5 +13,8 @@ Makefile.am: Include: +License: +GPL + Maintainer: diff --git a/modules/binary-io b/modules/binary-io index eb3af2ba74..162980b41e 100644 --- a/modules/binary-io +++ b/modules/binary-io @@ -14,6 +14,9 @@ lib_SOURCES += binary-io.h Include: "binary-io.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/c-bs-a b/modules/c-bs-a index 0757f47c6e..bf76716af1 100644 --- a/modules/c-bs-a +++ b/modules/c-bs-a @@ -13,6 +13,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/c-ctype b/modules/c-ctype index f17a435a95..2fcefa3da1 100644 --- a/modules/c-ctype +++ b/modules/c-ctype @@ -16,6 +16,9 @@ lib_SOURCES += c-ctype.h c-ctype.c Include: "c-ctype.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/c-stack b/modules/c-stack index e8d052e5eb..cd9c78143f 100644 --- a/modules/c-stack +++ b/modules/c-stack @@ -19,6 +19,9 @@ lib_SOURCES += c-stack.h c-stack.c Include: "c-stack.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/c-strtod b/modules/c-strtod index 880abea304..8f16e328ea 100644 --- a/modules/c-strtod +++ b/modules/c-strtod @@ -18,6 +18,9 @@ lib_SOURCES += c-strtod.h c-strtod.c Include: "c-strtod.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/c-strtold b/modules/c-strtold index 713983800b..e9b932937b 100644 --- a/modules/c-strtold +++ b/modules/c-strtold @@ -19,6 +19,9 @@ lib_SOURCES += c-strtod.h c-strtod.c c-strtold.c Include: "c-strtod.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/calloc b/modules/calloc index 7506d2823e..2d3bfc2766 100644 --- a/modules/calloc +++ b/modules/calloc @@ -15,5 +15,8 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/canon-host b/modules/canon-host index 64a9629fa1..823a30fdb8 100644 --- a/modules/canon-host +++ b/modules/canon-host @@ -16,6 +16,9 @@ lib_SOURCES += canon-host.c Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/canonicalize b/modules/canonicalize index d7eb429ec0..eeb3909425 100644 --- a/modules/canonicalize +++ b/modules/canonicalize @@ -22,6 +22,9 @@ lib_SOURCES += canonicalize.h canonicalize.c stat-macros.h Include: "canonicalize.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/chown b/modules/chown index 1d5d41bd52..71af8b4a0e 100644 --- a/modules/chown +++ b/modules/chown @@ -16,6 +16,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/cloexec b/modules/cloexec index 9dc2c1a3f7..d9ecea8c17 100644 --- a/modules/cloexec +++ b/modules/cloexec @@ -18,5 +18,8 @@ lib_SOURCES += cloexec.c cloexec.h Include: "cloexec.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/closeout b/modules/closeout index 4cdedb3f71..828676fc02 100644 --- a/modules/closeout +++ b/modules/closeout @@ -23,5 +23,8 @@ lib_SOURCES += closeout.h closeout.c Include: "closeout.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/copy-file b/modules/copy-file index 99fc3bfc34..11fb40a031 100644 --- a/modules/copy-file +++ b/modules/copy-file @@ -23,6 +23,9 @@ lib_SOURCES += copy-file.h copy-file.c Include: "copy-file.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/cycle-check b/modules/cycle-check index 91c4e31664..ccbdc1dcf5 100644 --- a/modules/cycle-check +++ b/modules/cycle-check @@ -16,6 +16,9 @@ lib_SOURCES += cycle-check.c cycle-check.h dev-ino.h Include: "cycle-check.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/diacrit b/modules/diacrit index 1aa1860432..725d683fd4 100644 --- a/modules/diacrit +++ b/modules/diacrit @@ -15,6 +15,9 @@ lib_SOURCES += diacrit.h diacrit.c Include: "diacrit.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/dirfd b/modules/dirfd index ac8c30fbbf..54824024ac 100644 --- a/modules/dirfd +++ b/modules/dirfd @@ -17,5 +17,8 @@ lib_SOURCES += dirfd.h Include: "dirfd.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/dirname b/modules/dirname index d6fef3fc89..4b1874117d 100644 --- a/modules/dirname +++ b/modules/dirname @@ -21,6 +21,9 @@ lib_SOURCES += dirname.h dirname.c basename.c stripslash.c Include: "dirname.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/dummy b/modules/dummy index 773c92057c..bacd05781d 100644 --- a/modules/dummy +++ b/modules/dummy @@ -13,5 +13,8 @@ lib_SOURCES += dummy.c Include: +License: +GPL + Maintainer: all diff --git a/modules/dup2 b/modules/dup2 index 1d841ef4c7..7b33e6f5c8 100644 --- a/modules/dup2 +++ b/modules/dup2 @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/eealloc b/modules/eealloc index 95189e9f61..253b93dab8 100644 --- a/modules/eealloc +++ b/modules/eealloc @@ -16,5 +16,8 @@ EXTRA_DIST += eealloc.h Include: #include +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/error b/modules/error index f051352639..e7c33ddd0d 100644 --- a/modules/error +++ b/modules/error @@ -19,6 +19,9 @@ Makefile.am: Include: "error.h" +License: +LGPL + Maintainer: all, glibc diff --git a/modules/euidaccess b/modules/euidaccess index 09a0058af1..8d4bb87528 100644 --- a/modules/euidaccess +++ b/modules/euidaccess @@ -19,6 +19,9 @@ lib_SOURCES += euidaccess.h stat-macros.h Include: "euidaccess.h" +License: +LGPL + Maintainer: Jim Meyering, glibc diff --git a/modules/exclude b/modules/exclude index be464edafd..0b7556a08a 100644 --- a/modules/exclude +++ b/modules/exclude @@ -22,6 +22,9 @@ lib_SOURCES += exclude.h exclude.c Include: "exclude.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/execute b/modules/execute index f28640ff61..6deada935d 100644 --- a/modules/execute +++ b/modules/execute @@ -25,6 +25,9 @@ lib_SOURCES += execute.h execute.c w32spawn.h Include: "execute.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/exit b/modules/exit index b8d3994b83..2ba366325c 100644 --- a/modules/exit +++ b/modules/exit @@ -14,6 +14,9 @@ lib_SOURCES += exit.h Include: "exit.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/exitfail b/modules/exitfail index 67e82db311..05c61d788c 100644 --- a/modules/exitfail +++ b/modules/exitfail @@ -18,6 +18,9 @@ lib_SOURCES += exitfail.h exitfail.c Include: "exitfail.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/extensions b/modules/extensions index a67ce0ea78..5822b3fefa 100644 --- a/modules/extensions +++ b/modules/extensions @@ -13,6 +13,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Paul Eggert and Jim Meyering diff --git a/modules/fatal-signal b/modules/fatal-signal index fde4227f47..89d1ec2ec0 100644 --- a/modules/fatal-signal +++ b/modules/fatal-signal @@ -21,6 +21,9 @@ lib_SOURCES += fatal-signal.h fatal-signal.c Include: "fatal-signal.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/fcntl-safer b/modules/fcntl-safer index 454169d96c..c676ff7ba8 100644 --- a/modules/fcntl-safer +++ b/modules/fcntl-safer @@ -18,6 +18,9 @@ lib_SOURCES += fcntl-safer.h open-safer.c Include: "fcntl-safer.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/file-type b/modules/file-type index 8f14c2e433..c0d150cf92 100644 --- a/modules/file-type +++ b/modules/file-type @@ -19,6 +19,9 @@ lib_SOURCES += file-type.h file-type.c stat-macros.h Include: "file-type.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/fileblocks b/modules/fileblocks index 6105c051b7..e919301e79 100644 --- a/modules/fileblocks +++ b/modules/fileblocks @@ -14,6 +14,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/filemode b/modules/filemode index a220b0b378..7203b0c536 100644 --- a/modules/filemode +++ b/modules/filemode @@ -19,6 +19,9 @@ lib_SOURCES += filemode.h filemode.c stat-macros.h Include: "filemode.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/findprog b/modules/findprog index b91d00b405..f5bbe66d5a 100644 --- a/modules/findprog +++ b/modules/findprog @@ -21,6 +21,9 @@ lib_SOURCES += findprog.h findprog.c Include: "findprog.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/fnmatch b/modules/fnmatch index 5473ebf8c5..c8a930c449 100644 --- a/modules/fnmatch +++ b/modules/fnmatch @@ -29,5 +29,8 @@ MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t Include: +License: +LGPL + Maintainer: all, glibc diff --git a/modules/fnmatch-gnu b/modules/fnmatch-gnu index 93fc49e594..3328d2364c 100644 --- a/modules/fnmatch-gnu +++ b/modules/fnmatch-gnu @@ -14,6 +14,9 @@ Makefile.am: Include: "fnmatch.h" +License: +GPL + Maintainer: all diff --git a/modules/fnmatch-posix b/modules/fnmatch-posix index e11b78922e..bd4c6f5674 100644 --- a/modules/fnmatch-posix +++ b/modules/fnmatch-posix @@ -14,6 +14,9 @@ Makefile.am: Include: "fnmatch.h" +License: +GPL + Maintainer: all diff --git a/modules/fpending b/modules/fpending index 5c2cc119af..1587206a0f 100644 --- a/modules/fpending +++ b/modules/fpending @@ -17,6 +17,9 @@ lib_SOURCES += __fpending.h Include: "__fpending.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/free b/modules/free index 9ccaba3100..94b6a3a5ed 100644 --- a/modules/free +++ b/modules/free @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/fsusage b/modules/fsusage index b5bda8007e..6d4b9db9ae 100644 --- a/modules/fsusage +++ b/modules/fsusage @@ -22,6 +22,9 @@ lib_SOURCES += fsusage.h Include: "fsusage.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/ftruncate b/modules/ftruncate index 0b383cdb76..ae445f32b8 100644 --- a/modules/ftruncate +++ b/modules/ftruncate @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/full-read b/modules/full-read index 30b5f61d3d..fad6f06329 100644 --- a/modules/full-read +++ b/modules/full-read @@ -17,6 +17,9 @@ lib_SOURCES += full-read.h full-read.c Include: "full-read.h" +License: +GPL + Maintainer: Jim Meyering, Bruno Haible diff --git a/modules/full-write b/modules/full-write index 800623f6e6..e242d50887 100644 --- a/modules/full-write +++ b/modules/full-write @@ -16,6 +16,9 @@ lib_SOURCES += full-write.h full-write.c Include: "full-write.h" +License: +GPL + Maintainer: Jim Meyering, Bruno Haible diff --git a/modules/fwriteerror b/modules/fwriteerror index b360b91278..66be2605cf 100644 --- a/modules/fwriteerror +++ b/modules/fwriteerror @@ -15,5 +15,8 @@ lib_SOURCES += fwriteerror.h fwriteerror.c Include: "fwriteerror.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/gcd b/modules/gcd index b655278860..bba1cfd2fb 100644 --- a/modules/gcd +++ b/modules/gcd @@ -15,6 +15,9 @@ lib_SOURCES += gcd.h gcd.c Include: "gcd.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/getcwd b/modules/getcwd index d5b38a4469..2fa5e8d5c2 100644 --- a/modules/getcwd +++ b/modules/getcwd @@ -16,6 +16,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/getdate b/modules/getdate index c93959ed12..391eb004b8 100644 --- a/modules/getdate +++ b/modules/getdate @@ -27,6 +27,9 @@ MAINTAINERCLEANFILES += getdate.c Include: "getdate.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/getdomainname b/modules/getdomainname index 25cb6f69f9..765f2f8b80 100644 --- a/modules/getdomainname +++ b/modules/getdomainname @@ -17,5 +17,8 @@ lib_SOURCES += getdomainname.h Include: "getdomainname.h" +License: +GPL + Maintainer: all diff --git a/modules/getgroups b/modules/getgroups index 5e26cc4b10..16604f8f35 100644 --- a/modules/getgroups +++ b/modules/getgroups @@ -16,6 +16,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/gethostname b/modules/gethostname index 6c96f88965..ecf0f421fe 100644 --- a/modules/gethostname +++ b/modules/gethostname @@ -14,6 +14,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: all diff --git a/modules/getline b/modules/getline index af67fa82de..07ab835c5a 100644 --- a/modules/getline +++ b/modules/getline @@ -23,6 +23,9 @@ EXTRA_DIST += getndelim2.h getndelim2.c Include: "getline.h" +License: +GPL + Maintainer: all diff --git a/modules/getloadavg b/modules/getloadavg index c3fd60a1aa..e8774bc854 100644 --- a/modules/getloadavg +++ b/modules/getloadavg @@ -16,6 +16,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/getndelim2 b/modules/getndelim2 index 3e924793d9..677ba459a9 100644 --- a/modules/getndelim2 +++ b/modules/getndelim2 @@ -20,6 +20,9 @@ EXTRA_DIST += getndelim2.h getndelim2.c Include: "getndelim2.h" +License: +GPL + Maintainer: all diff --git a/modules/getnline b/modules/getnline index eddf2e53b9..261630a612 100644 --- a/modules/getnline +++ b/modules/getnline @@ -19,6 +19,9 @@ lib_SOURCES += getnline.h getnline.c Include: "getnline.h" +License: +GPL + Maintainer: all diff --git a/modules/getopt b/modules/getopt index 0e15175cbb..0446a4aeb7 100644 --- a/modules/getopt +++ b/modules/getopt @@ -29,6 +29,9 @@ MOSTLYCLEANFILES += getopt.h getopt.h-t Include: +License: +LGPL + Maintainer: all, glibc diff --git a/modules/getpagesize b/modules/getpagesize index 2fc5d23b05..2dc6324774 100644 --- a/modules/getpagesize +++ b/modules/getpagesize @@ -16,6 +16,9 @@ lib_SOURCES += getpagesize.h Include: "getpagesize.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/getpass b/modules/getpass index 1d4b3addfe..1aff39871b 100644 --- a/modules/getpass +++ b/modules/getpass @@ -20,6 +20,9 @@ lib_SOURCES += getpass.h Include: "getpass.h" +License: +LGPL + Maintainer: Jim Meyering, glibc diff --git a/modules/getpass-gnu b/modules/getpass-gnu index 945731fdb5..cfda81e8a3 100644 --- a/modules/getpass-gnu +++ b/modules/getpass-gnu @@ -20,6 +20,9 @@ lib_SOURCES += getpass.h Include: "getpass.h" +License: +LGPL + Maintainer: Jim Meyering, glibc diff --git a/modules/getsubopt b/modules/getsubopt index 780c0ff0b7..7f771f7cd7 100644 --- a/modules/getsubopt +++ b/modules/getsubopt @@ -18,5 +18,8 @@ lib_SOURCES += getsubopt.h Include: "getsubopt.h" +License: +LGPL + Maintainer: all, glibc diff --git a/modules/gettext b/modules/gettext index 59bef12513..f6b8faec2e 100644 --- a/modules/gettext +++ b/modules/gettext @@ -44,6 +44,9 @@ lib_SOURCES += gettext.h Include: "gettext.h" +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/gettime b/modules/gettime index e41d3da6f8..4368a4b133 100644 --- a/modules/gettime +++ b/modules/gettime @@ -18,6 +18,9 @@ lib_SOURCES += gettime.c Include: +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/gettimeofday b/modules/gettimeofday index 28f2d468a2..b4874baed6 100644 --- a/modules/gettimeofday +++ b/modules/gettimeofday @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/getugroups b/modules/getugroups index dd69cbed6e..1800e9f586 100644 --- a/modules/getugroups +++ b/modules/getugroups @@ -15,6 +15,9 @@ lib_SOURCES += getugroups.c Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/getusershell b/modules/getusershell index cd8c408c6e..3c551c73b2 100644 --- a/modules/getusershell +++ b/modules/getusershell @@ -16,6 +16,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/group-member b/modules/group-member index 0dcb8f20bd..c9015ec462 100644 --- a/modules/group-member +++ b/modules/group-member @@ -19,6 +19,9 @@ lib_SOURCES += group-member.h Include: "group-member.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/hard-locale b/modules/hard-locale index c2e5a5a96f..57cf76e98e 100644 --- a/modules/hard-locale +++ b/modules/hard-locale @@ -17,6 +17,9 @@ lib_SOURCES += hard-locale.h hard-locale.c Include: "hard-locale.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/hash b/modules/hash index e4f3653b4c..f180d3fdd7 100644 --- a/modules/hash +++ b/modules/hash @@ -19,6 +19,9 @@ lib_SOURCES += hash.h hash.c Include: "hash.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/hash-pjw b/modules/hash-pjw index 4db03621db..2fa6edb3b6 100644 --- a/modules/hash-pjw +++ b/modules/hash-pjw @@ -15,6 +15,9 @@ lib_SOURCES += hash-pjw.h hash-pjw.c Include: "hash-pjw.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/human b/modules/human index fa2f9a6b55..78ab324963 100644 --- a/modules/human +++ b/modules/human @@ -27,6 +27,9 @@ lib_SOURCES += human.h human.c Include: "human.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/iconv b/modules/iconv index 6278b2e34f..e91e3a76d6 100644 --- a/modules/iconv +++ b/modules/iconv @@ -18,6 +18,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/idcache b/modules/idcache index 4402121bef..d6e7405adb 100644 --- a/modules/idcache +++ b/modules/idcache @@ -16,6 +16,9 @@ lib_SOURCES += idcache.c Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/inttostr b/modules/inttostr index 3408a2c90f..f070d3f390 100644 --- a/modules/inttostr +++ b/modules/inttostr @@ -24,5 +24,8 @@ lib_SOURCES += imaxtostr.c inttostr.h offtostr.c umaxtostr.c Include: "inttostr.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/isdir b/modules/isdir index 943219d43a..09f59563a5 100644 --- a/modules/isdir +++ b/modules/isdir @@ -15,6 +15,9 @@ lib_SOURCES += isdir.c Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/lchown b/modules/lchown index a21ec041a9..d1923ec591 100644 --- a/modules/lchown +++ b/modules/lchown @@ -19,6 +19,9 @@ lib_SOURCES += lchown.h stat-macros.h Include: "lchown.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/linebreak b/modules/linebreak index ecf9f59a33..eef952b012 100644 --- a/modules/linebreak +++ b/modules/linebreak @@ -24,6 +24,9 @@ lib_SOURCES += linebreak.h linebreak.c lbrkprop.h Include: "linebreak.h" +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/linebuffer b/modules/linebuffer index 10b14b4d81..cc8abd763f 100644 --- a/modules/linebuffer +++ b/modules/linebuffer @@ -17,6 +17,9 @@ lib_SOURCES += linebuffer.h linebuffer.c Include: "linebuffer.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/localcharset b/modules/localcharset index 9226276dab..b832700f1c 100644 --- a/modules/localcharset +++ b/modules/localcharset @@ -72,5 +72,8 @@ CLEANFILES += charset.alias ref-add.sed ref-del.sed Include: "localcharset.h" +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/long-options b/modules/long-options index bc0a686a2f..f64332236b 100644 --- a/modules/long-options +++ b/modules/long-options @@ -18,6 +18,9 @@ lib_SOURCES += long-options.h long-options.c Include: "long-options.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/lstat b/modules/lstat index 763f16ee3d..2a595c5b2b 100644 --- a/modules/lstat +++ b/modules/lstat @@ -17,6 +17,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/makepath b/modules/makepath index 944c6cb482..363a9dd104 100644 --- a/modules/makepath +++ b/modules/makepath @@ -26,6 +26,9 @@ lib_SOURCES += makepath.h makepath.c stat-macros.h Include: "makepath.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/malloc b/modules/malloc index 20292863eb..e162181978 100644 --- a/modules/malloc +++ b/modules/malloc @@ -14,5 +14,8 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/mathl b/modules/mathl index 363a240a9c..1d6fdd9e6d 100644 --- a/modules/mathl +++ b/modules/mathl @@ -32,6 +32,9 @@ noinst_HEADERS += mathl.h trigl.h trigl.c sincosl.c Include: "mathl.h" +License: +GPL + Maintainer: Paolo Bonzini diff --git a/modules/mbswidth b/modules/mbswidth index a031e84db9..51ea07a413 100644 --- a/modules/mbswidth +++ b/modules/mbswidth @@ -19,6 +19,9 @@ lib_SOURCES += mbswidth.h mbswidth.c Include: "mbswidth.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/md5 b/modules/md5 index 2d173914c7..a000775f44 100644 --- a/modules/md5 +++ b/modules/md5 @@ -19,6 +19,9 @@ lib_SOURCES += md5.h md5.c Include: "md5.h" +License: +LGPL + Maintainer: Jim Meyering, glibc diff --git a/modules/memcasecmp b/modules/memcasecmp index d3da698a8a..b391580043 100644 --- a/modules/memcasecmp +++ b/modules/memcasecmp @@ -17,6 +17,9 @@ lib_SOURCES += memcasecmp.h memcasecmp.c Include: "memcasecmp.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/memchr b/modules/memchr index f2e35c5c28..3b18a1c5fa 100644 --- a/modules/memchr +++ b/modules/memchr @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: Jim Meyering, glibc diff --git a/modules/memcmp b/modules/memcmp index d9d4afe4b1..fc85d852f4 100644 --- a/modules/memcmp +++ b/modules/memcmp @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: Jim Meyering, glibc diff --git a/modules/memcoll b/modules/memcoll index d64e4fe52e..b963bc666e 100644 --- a/modules/memcoll +++ b/modules/memcoll @@ -17,6 +17,9 @@ lib_SOURCES += memcoll.h memcoll.c Include: "memcoll.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/memcpy b/modules/memcpy index cb69e61f0a..d160dd2612 100644 --- a/modules/memcpy +++ b/modules/memcpy @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/memmove b/modules/memmove index d02001b67a..d96edceb4e 100644 --- a/modules/memmove +++ b/modules/memmove @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/mempcpy b/modules/mempcpy index fbbe88087d..1ed82ae21a 100644 --- a/modules/mempcpy +++ b/modules/mempcpy @@ -17,5 +17,8 @@ lib_SOURCES += mempcpy.h Include: "mempcpy.h" +License: +GPL + Maintainer: Simon Josefsson diff --git a/modules/memrchr b/modules/memrchr index 01c8feaf5c..eccad32aa5 100644 --- a/modules/memrchr +++ b/modules/memrchr @@ -14,6 +14,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: Jim Meyering, glibc diff --git a/modules/memset b/modules/memset index ba12b8716b..040f955339 100644 --- a/modules/memset +++ b/modules/memset @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/minmax b/modules/minmax index fb292cc385..5f64374fbc 100644 --- a/modules/minmax +++ b/modules/minmax @@ -14,6 +14,9 @@ lib_SOURCES += minmax.h Include: "minmax.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/mkdir b/modules/mkdir index aabb79c426..2871a4a808 100644 --- a/modules/mkdir +++ b/modules/mkdir @@ -17,5 +17,8 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/mkdtemp b/modules/mkdtemp index 3f9b8d521f..1bfb9a87b4 100644 --- a/modules/mkdtemp +++ b/modules/mkdtemp @@ -21,6 +21,9 @@ lib_SOURCES += mkdtemp.h Include: "mkdtemp.h" +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/mkstemp b/modules/mkstemp index 63f31f5e24..5d80820d46 100644 --- a/modules/mkstemp +++ b/modules/mkstemp @@ -20,5 +20,8 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/mktime b/modules/mktime index 13973fc830..39312756e3 100644 --- a/modules/mktime +++ b/modules/mktime @@ -16,6 +16,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: Paul Eggert, Jim Meyering, glibc diff --git a/modules/modechange b/modules/modechange index 07de3723e3..ff871fe496 100644 --- a/modules/modechange +++ b/modules/modechange @@ -19,6 +19,9 @@ lib_SOURCES += modechange.h modechange.c Include: "modechange.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/mountlist b/modules/mountlist index 19996712e4..846eae8c78 100644 --- a/modules/mountlist +++ b/modules/mountlist @@ -21,6 +21,9 @@ lib_SOURCES += mountlist.h Include: "mountlist.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/nanosleep b/modules/nanosleep index e21a4412a6..e0d3d8559e 100644 --- a/modules/nanosleep +++ b/modules/nanosleep @@ -16,6 +16,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/obstack b/modules/obstack index 3304083544..7544bbb238 100644 --- a/modules/obstack +++ b/modules/obstack @@ -22,6 +22,9 @@ Makefile.am: Include: "obstack.h" +License: +LGPL + Maintainer: all, glibc diff --git a/modules/path-concat b/modules/path-concat index f527ae645e..8d42b2e5f7 100644 --- a/modules/path-concat +++ b/modules/path-concat @@ -21,6 +21,9 @@ lib_SOURCES += path-concat.h path-concat.c Include: "path-concat.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/pathmax b/modules/pathmax index a0aae23239..1fec5faffa 100644 --- a/modules/pathmax +++ b/modules/pathmax @@ -16,6 +16,9 @@ lib_SOURCES += pathmax.h Include: "pathmax.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/pathname b/modules/pathname index 82f00d07d7..b30e746295 100644 --- a/modules/pathname +++ b/modules/pathname @@ -18,6 +18,9 @@ lib_SOURCES += pathname.h concatpath.c Include: "pathname.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/physmem b/modules/physmem index 7d3a1dee2a..7b77d6d94a 100644 --- a/modules/physmem +++ b/modules/physmem @@ -17,6 +17,9 @@ lib_SOURCES += physmem.h physmem.c Include: "physmem.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/pipe b/modules/pipe index a4581d9d40..ff0670a794 100644 --- a/modules/pipe +++ b/modules/pipe @@ -25,6 +25,9 @@ lib_SOURCES += pipe.h pipe.c w32spawn.h Include: "pipe.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/poll b/modules/poll index 9e59f79607..4695af2682 100644 --- a/modules/poll +++ b/modules/poll @@ -26,5 +26,8 @@ MOSTLYCLEANFILES += poll.h poll.h-t Include: #include +License: +GPL + Maintainer: Paolo Bonzini diff --git a/modules/posixtm b/modules/posixtm index 943d269e63..9a1a299c55 100644 --- a/modules/posixtm +++ b/modules/posixtm @@ -19,6 +19,9 @@ lib_SOURCES += posixtm.h posixtm.c Include: "posixtm.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/posixver b/modules/posixver index 88da29aad3..b068cecf6b 100644 --- a/modules/posixver +++ b/modules/posixver @@ -18,6 +18,9 @@ lib_SOURCES += posixver.h posixver.c Include: "posixver.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/progname b/modules/progname index 4429c63a3a..eacc4529ca 100644 --- a/modules/progname +++ b/modules/progname @@ -15,6 +15,9 @@ lib_SOURCES += progname.h progname.c Include: "progname.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/putenv b/modules/putenv index 48c86ab201..f6e30b5bad 100644 --- a/modules/putenv +++ b/modules/putenv @@ -14,6 +14,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: -Jim Meyering +Jim Meyering, glibc diff --git a/modules/quote b/modules/quote index cebfa9b09b..4d1c3b4cce 100644 --- a/modules/quote +++ b/modules/quote @@ -18,6 +18,9 @@ lib_SOURCES += quote.h quote.c Include: "quote.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/quotearg b/modules/quotearg index 7ef807618c..817089fa59 100644 --- a/modules/quotearg +++ b/modules/quotearg @@ -21,6 +21,9 @@ lib_SOURCES += quotearg.h quotearg.c Include: "quotearg.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/raise b/modules/raise index 81677e35d9..a303e29306 100644 --- a/modules/raise +++ b/modules/raise @@ -13,6 +13,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/readlink b/modules/readlink index 8a0acb7d3f..4caea33dc3 100644 --- a/modules/readlink +++ b/modules/readlink @@ -14,6 +14,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/readtokens b/modules/readtokens index fc24e9048f..1b5906aa01 100644 --- a/modules/readtokens +++ b/modules/readtokens @@ -19,6 +19,9 @@ lib_SOURCES += readtokens.h readtokens.c Include: "readtokens.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/readtokens0 b/modules/readtokens0 index 7bbbd4d11a..f03a2a44a6 100644 --- a/modules/readtokens0 +++ b/modules/readtokens0 @@ -16,6 +16,9 @@ lib_SOURCES += readtokens0.h readtokens0.c Include: "readtokens0.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/readutmp b/modules/readutmp index 864082a5a2..7a572b775c 100644 --- a/modules/readutmp +++ b/modules/readutmp @@ -19,6 +19,9 @@ lib_SOURCES += readutmp.h Include: "readutmp.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/realloc b/modules/realloc index fbdce5e181..5273e4a5aa 100644 --- a/modules/realloc +++ b/modules/realloc @@ -14,5 +14,8 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/regex b/modules/regex index ba53fa0557..170d78cb06 100644 --- a/modules/regex +++ b/modules/regex @@ -21,6 +21,9 @@ lib_SOURCES += regex.h Include: "regex.h" +License: +LGPL + Maintainer: all diff --git a/modules/rename b/modules/rename index e8894ce442..19c0bb2dca 100644 --- a/modules/rename +++ b/modules/rename @@ -17,6 +17,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/restrict b/modules/restrict index b03c0d628d..1c2f63316a 100644 --- a/modules/restrict +++ b/modules/restrict @@ -13,5 +13,8 @@ Makefile.am: Include: +License: +GPL + Maintainer: Paul Eggert and Jim Meyering diff --git a/modules/rmdir b/modules/rmdir index 8a3c6baa55..0dff3121a5 100644 --- a/modules/rmdir +++ b/modules/rmdir @@ -17,6 +17,9 @@ lib_SOURCES += stat-macros.h Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/rpmatch b/modules/rpmatch index d9451258c5..f9be55da29 100644 --- a/modules/rpmatch +++ b/modules/rpmatch @@ -16,6 +16,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/safe-read b/modules/safe-read index d57fd8ece3..0d356a6de4 100644 --- a/modules/safe-read +++ b/modules/safe-read @@ -18,6 +18,9 @@ lib_SOURCES += safe-read.h safe-read.c Include: "safe-read.h" +License: +GPL + Maintainer: Jim Meyering, Bruno Haible diff --git a/modules/safe-write b/modules/safe-write index c436f0e33d..e9077674b9 100644 --- a/modules/safe-write +++ b/modules/safe-write @@ -18,6 +18,9 @@ lib_SOURCES += safe-write.h safe-write.c Include: "safe-write.h" +License: +GPL + Maintainer: Jim Meyering, Bruno Haible diff --git a/modules/same b/modules/same index 077036b8ef..37ef600c01 100644 --- a/modules/same +++ b/modules/same @@ -22,6 +22,9 @@ lib_SOURCES += same.h same.c Include: "same.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/save-cwd b/modules/save-cwd index 8f9b72f0ce..67f226df32 100644 --- a/modules/save-cwd +++ b/modules/save-cwd @@ -18,5 +18,8 @@ lib_SOURCES += save-cwd.h save-cwd.c Include: "save-cwd.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/savedir b/modules/savedir index ee8ef30a41..e53e7ab5bc 100644 --- a/modules/savedir +++ b/modules/savedir @@ -18,6 +18,9 @@ lib_SOURCES += savedir.h savedir.c Include: "savedir.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/setenv b/modules/setenv index eaab550dff..bcb2edf869 100644 --- a/modules/setenv +++ b/modules/setenv @@ -21,6 +21,9 @@ lib_SOURCES += setenv.h Include: "setenv.h" +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/settime b/modules/settime index 56ab0a92ff..8d0d2e1dc6 100644 --- a/modules/settime +++ b/modules/settime @@ -17,6 +17,9 @@ lib_SOURCES += settime.c Include: +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/sha1 b/modules/sha1 index 5ed694d028..198ec5eaa6 100644 --- a/modules/sha1 +++ b/modules/sha1 @@ -19,6 +19,9 @@ lib_SOURCES += sha1.h sha1.c Include: "sha1.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/sig2str b/modules/sig2str index dd243c8bae..42c8073030 100644 --- a/modules/sig2str +++ b/modules/sig2str @@ -17,6 +17,9 @@ lib_SOURCES += sig2str.h Include: "sig2str.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/stat b/modules/stat index 002e9e2cc2..c074eb950b 100644 --- a/modules/stat +++ b/modules/stat @@ -18,6 +18,9 @@ lib_SOURCES += stat-macros.h Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/stdbool b/modules/stdbool index ae5e216345..786f125845 100644 --- a/modules/stdbool +++ b/modules/stdbool @@ -26,6 +26,9 @@ MOSTLYCLEANFILES += stdbool.h stdbool.h-t Include: #include +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/stdint b/modules/stdint index d274798231..e919880f0a 100644 --- a/modules/stdint +++ b/modules/stdint @@ -28,5 +28,8 @@ MOSTLYCLEANFILES += stdint.h stdint.h-t Include: #include +License: +GPL + Maintainer: all diff --git a/modules/stdio-safer b/modules/stdio-safer index 67c0c21adb..5427474fdd 100644 --- a/modules/stdio-safer +++ b/modules/stdio-safer @@ -18,6 +18,9 @@ lib_SOURCES += stdio-safer.h fopen-safer.c Include: "stdio-safer.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/stpcpy b/modules/stpcpy index 784af1d687..7bcf9d8600 100644 --- a/modules/stpcpy +++ b/modules/stpcpy @@ -17,6 +17,9 @@ lib_SOURCES += stpcpy.h Include: "stpcpy.h" +License: +LGPL + Maintainer: Bruno Haible, glibc diff --git a/modules/stpncpy b/modules/stpncpy index 0646e27983..96b52307f1 100644 --- a/modules/stpncpy +++ b/modules/stpncpy @@ -17,6 +17,9 @@ lib_SOURCES += stpncpy.h Include: "stpncpy.h" +License: +LGPL + Maintainer: Bruno Haible, glibc diff --git a/modules/strcase b/modules/strcase index eb227ebb6d..1f98231207 100644 --- a/modules/strcase +++ b/modules/strcase @@ -18,6 +18,9 @@ lib_SOURCES += strcase.h Include: "strcase.h" +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/strchrnul b/modules/strchrnul index 500bd94ab6..3da076b7c6 100644 --- a/modules/strchrnul +++ b/modules/strchrnul @@ -17,5 +17,8 @@ lib_SOURCES += strchrnul.h Include: "strchrnul.h" +License: +GPL + Maintainer: FSF diff --git a/modules/strcspn b/modules/strcspn index 0af4becc81..a80c8527a1 100644 --- a/modules/strcspn +++ b/modules/strcspn @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: Bruno Haible, glibc diff --git a/modules/strdup b/modules/strdup index c124b0b33f..d3bd14c9e0 100644 --- a/modules/strdup +++ b/modules/strdup @@ -17,6 +17,9 @@ lib_SOURCES += strdup.h Include: "strdup.h" +License: +LGPL + Maintainer: all, glibc diff --git a/modules/strerror b/modules/strerror index 5e5d467b9d..5bed018b6c 100644 --- a/modules/strerror +++ b/modules/strerror @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: all diff --git a/modules/strftime b/modules/strftime index 2eeb1eafc0..468bbad739 100644 --- a/modules/strftime +++ b/modules/strftime @@ -21,6 +21,9 @@ lib_SOURCES += strftime.c strftime.h Include: "strftime.h" +License: +LGPL + Maintainer: glibc diff --git a/modules/strndup b/modules/strndup index c882a75df3..ed9c51c2cf 100644 --- a/modules/strndup +++ b/modules/strndup @@ -18,6 +18,9 @@ lib_SOURCES += strndup.h Include: "strndup.h" +License: +LGPL + Maintainer: glibc diff --git a/modules/strnlen b/modules/strnlen index 900803ed76..4f52435a84 100644 --- a/modules/strnlen +++ b/modules/strnlen @@ -14,6 +14,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: glibc diff --git a/modules/strpbrk b/modules/strpbrk index 5121f3e84b..003486f777 100644 --- a/modules/strpbrk +++ b/modules/strpbrk @@ -17,6 +17,9 @@ lib_SOURCES += strpbrk.h Include: "strpbrk.h" +License: +LGPL + Maintainer: Bruno Haible, glibc diff --git a/modules/strstr b/modules/strstr index 4c83c73a30..c6891d2153 100644 --- a/modules/strstr +++ b/modules/strstr @@ -17,6 +17,9 @@ lib_SOURCES += strstr.h Include: "strstr.h" +License: +LGPL + Maintainer: Bruno Haible, glibc diff --git a/modules/strtod b/modules/strtod index a1a450eb79..74351486ae 100644 --- a/modules/strtod +++ b/modules/strtod @@ -16,5 +16,8 @@ LIBS += $(POW_LIB) Include: +License: +GPL + Maintainer: all diff --git a/modules/strtoimax b/modules/strtoimax index fd244d0ef3..c63319ee9a 100644 --- a/modules/strtoimax +++ b/modules/strtoimax @@ -19,6 +19,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/strtol b/modules/strtol index 363c7f0fc8..ad17152aea 100644 --- a/modules/strtol +++ b/modules/strtol @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: glibc diff --git a/modules/strtoll b/modules/strtoll index 75276ef7d6..a25ebfaee7 100644 --- a/modules/strtoll +++ b/modules/strtoll @@ -17,6 +17,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: glibc diff --git a/modules/strtoul b/modules/strtoul index a5628e90fd..8cb6d66c48 100644 --- a/modules/strtoul +++ b/modules/strtoul @@ -16,6 +16,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: glibc diff --git a/modules/strtoull b/modules/strtoull index f6a5588403..9ff6f68125 100644 --- a/modules/strtoull +++ b/modules/strtoull @@ -17,6 +17,9 @@ Makefile.am: Include: +License: +LGPL + Maintainer: glibc diff --git a/modules/strtoumax b/modules/strtoumax index 0e5eb5fab9..8cfc8096b8 100644 --- a/modules/strtoumax +++ b/modules/strtoumax @@ -20,6 +20,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/strverscmp b/modules/strverscmp index cf86920473..8956a4ad81 100644 --- a/modules/strverscmp +++ b/modules/strverscmp @@ -17,6 +17,9 @@ lib_SOURCES += strverscmp.h Include: "strverscmp.h" +License: +LGPL + Maintainer: Jim Meyering, glibc diff --git a/modules/sysexits b/modules/sysexits index bf2a3ef2ec..817336108f 100644 --- a/modules/sysexits +++ b/modules/sysexits @@ -24,5 +24,8 @@ MOSTLYCLEANFILES += sysexits.h sysexits.h-t Include: #include +License: +GPL + Maintainer: Simon Josefsson diff --git a/modules/time_r b/modules/time_r index c422b67305..1e3a4a5a97 100644 --- a/modules/time_r +++ b/modules/time_r @@ -19,6 +19,9 @@ lib_SOURCES += time_r.h Include: "time_r.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/timegm b/modules/timegm index e841a55128..f5c0a2d5ef 100644 --- a/modules/timegm +++ b/modules/timegm @@ -19,5 +19,8 @@ lib_SOURCES += timegm.h Include: "timegm.h" +License: +LGPL + Maintainer: all, glibc diff --git a/modules/timespec b/modules/timespec index e9efb5f48f..a363392523 100644 --- a/modules/timespec +++ b/modules/timespec @@ -18,6 +18,9 @@ lib_SOURCES += timespec.h Include: "timespec.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/tzset b/modules/tzset index c0e9304747..54f13e3801 100644 --- a/modules/tzset +++ b/modules/tzset @@ -15,6 +15,9 @@ Makefile.am: Include: +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/ucs4-utf16 b/modules/ucs4-utf16 index 4cc0c4ce35..c4d1b06af8 100644 --- a/modules/ucs4-utf16 +++ b/modules/ucs4-utf16 @@ -15,6 +15,9 @@ lib_SOURCES += ucs4-utf16.h Include: +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/ucs4-utf8 b/modules/ucs4-utf8 index d62455e0de..be9c3ded0d 100644 --- a/modules/ucs4-utf8 +++ b/modules/ucs4-utf8 @@ -15,6 +15,9 @@ lib_SOURCES += ucs4-utf8.h Include: +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/unicodeio b/modules/unicodeio index 3581f65cfc..4eb262275d 100644 --- a/modules/unicodeio +++ b/modules/unicodeio @@ -21,6 +21,9 @@ lib_SOURCES += unicodeio.h unicodeio.c Include: "unicodeio.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/unistd-safer b/modules/unistd-safer index c5d24c06f5..26fa924851 100644 --- a/modules/unistd-safer +++ b/modules/unistd-safer @@ -17,6 +17,9 @@ lib_SOURCES += unistd-safer.h dup-safer.c Include: "unistd-safer.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/unlocked-io b/modules/unlocked-io index 94e1628847..3ce2322c41 100644 --- a/modules/unlocked-io +++ b/modules/unlocked-io @@ -17,6 +17,9 @@ lib_SOURCES += unlocked-io.h Include: "unlocked-io.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/userspec b/modules/userspec index 3f1518d0c0..a0b1ec29fd 100644 --- a/modules/userspec +++ b/modules/userspec @@ -22,5 +22,8 @@ lib_SOURCES += userspec.c userspec.h Include: "userspec.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/utf16-ucs4 b/modules/utf16-ucs4 index 9fb8ae7e25..de40bd6b88 100644 --- a/modules/utf16-ucs4 +++ b/modules/utf16-ucs4 @@ -15,6 +15,9 @@ lib_SOURCES += utf16-ucs4.h Include: +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/utf8-ucs4 b/modules/utf8-ucs4 index 9a2d4eaf0a..0c127a762d 100644 --- a/modules/utf8-ucs4 +++ b/modules/utf8-ucs4 @@ -15,6 +15,9 @@ lib_SOURCES += utf8-ucs4.h Include: +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/utime b/modules/utime index 0a16822cbf..dc5dd59b66 100644 --- a/modules/utime +++ b/modules/utime @@ -24,6 +24,9 @@ Include: # include #endif +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/utimecmp b/modules/utimecmp index 204138ad13..d65ef3e336 100644 --- a/modules/utimecmp +++ b/modules/utimecmp @@ -21,6 +21,9 @@ lib_SOURCES += utimecmp.h utimecmp.c Include: "utimecmp.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/utimens b/modules/utimens index 7196ef7821..f630f1bb5b 100644 --- a/modules/utimens +++ b/modules/utimens @@ -19,6 +19,9 @@ lib_SOURCES += utimens.h utimens.c Include: "utimens.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/vasnprintf b/modules/vasnprintf index 8c621019af..003626407f 100644 --- a/modules/vasnprintf +++ b/modules/vasnprintf @@ -33,6 +33,9 @@ lib_SOURCES += printf-args.h printf-parse.h vasnprintf.h Include: "vasnprintf.h" +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/vasprintf b/modules/vasprintf index 9f9652262d..4341d6ceba 100644 --- a/modules/vasprintf +++ b/modules/vasprintf @@ -19,6 +19,9 @@ lib_SOURCES += vasprintf.h Include: "vasprintf.h" +License: +LGPL + Maintainer: Bruno Haible diff --git a/modules/version-etc b/modules/version-etc index db78c43595..69e161a390 100644 --- a/modules/version-etc +++ b/modules/version-etc @@ -17,6 +17,9 @@ lib_SOURCES += version-etc.h version-etc.c Include: "version-etc.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/wait-process b/modules/wait-process index 9e397b0553..5a9cd65e5c 100644 --- a/modules/wait-process +++ b/modules/wait-process @@ -24,6 +24,9 @@ lib_SOURCES += wait-process.h wait-process.c Include: "wait-process.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/xalloc b/modules/xalloc index e8370970df..ddc14485fb 100644 --- a/modules/xalloc +++ b/modules/xalloc @@ -18,6 +18,9 @@ lib_SOURCES += xalloc.h xmalloc.c xstrdup.c Include: "xalloc.h" +License: +GPL + Maintainer: all diff --git a/modules/xalloc-die b/modules/xalloc-die index 2c0df449a9..62078b95f7 100644 --- a/modules/xalloc-die +++ b/modules/xalloc-die @@ -18,6 +18,9 @@ lib_SOURCES += xalloc-die.c Include: "xalloc.h" +License: +GPL + Maintainer: all diff --git a/modules/xallocsa b/modules/xallocsa index 98a0b4cdac..052d292bda 100644 --- a/modules/xallocsa +++ b/modules/xallocsa @@ -17,5 +17,8 @@ lib_SOURCES += xallocsa.h xallocsa.c Include: #include "xallocsa.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/xgetcwd b/modules/xgetcwd index f552136c5d..8015604736 100644 --- a/modules/xgetcwd +++ b/modules/xgetcwd @@ -20,6 +20,9 @@ lib_SOURCES += xgetcwd.h xgetcwd.c Include: "xgetcwd.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/xgetdomainname b/modules/xgetdomainname index 8e4082333c..307aa5dca8 100644 --- a/modules/xgetdomainname +++ b/modules/xgetdomainname @@ -17,5 +17,8 @@ lib_SOURCES += xgetdomainname.h xgetdomainname.c Include: "xgetdomainname.h" +License: +GPL + Maintainer: Simon Josefsson diff --git a/modules/xgethostname b/modules/xgethostname index 840faf156e..07cf83d96e 100644 --- a/modules/xgethostname +++ b/modules/xgethostname @@ -17,6 +17,9 @@ lib_SOURCES += xgethostname.h xgethostname.c Include: "xgethostname.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/xmemcoll b/modules/xmemcoll index 7589b5239f..f66e8bc80a 100644 --- a/modules/xmemcoll +++ b/modules/xmemcoll @@ -20,6 +20,9 @@ lib_SOURCES += xmemcoll.h xmemcoll.c Include: "xmemcoll.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/xnanosleep b/modules/xnanosleep index 40cf2d32b8..7317c1ebff 100644 --- a/modules/xnanosleep +++ b/modules/xnanosleep @@ -17,6 +17,9 @@ lib_SOURCES += xnanosleep.h xnanosleep.c Include: "xnanosleep.h" +License: +GPL + Maintainer: Paul Eggert, Jim Meyering diff --git a/modules/xreadlink b/modules/xreadlink index be4b484e06..ead1f876d5 100644 --- a/modules/xreadlink +++ b/modules/xreadlink @@ -20,6 +20,9 @@ lib_SOURCES += xreadlink.h xreadlink.c Include: "xreadlink.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/xsetenv b/modules/xsetenv index 1b85048292..d92583f5df 100644 --- a/modules/xsetenv +++ b/modules/xsetenv @@ -20,6 +20,9 @@ lib_SOURCES += xsetenv.h xsetenv.c Include: "xsetenv.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/xsize b/modules/xsize index 9acf916fa0..55b73074cc 100644 --- a/modules/xsize +++ b/modules/xsize @@ -17,6 +17,9 @@ lib_SOURCES += xsize.h Include: "xsize.h" +License: +GPL + Maintainer: Bruno Haible diff --git a/modules/xstrndup b/modules/xstrndup index ab7f15621d..dfd72a7a4d 100644 --- a/modules/xstrndup +++ b/modules/xstrndup @@ -19,6 +19,9 @@ lib_SOURCES += xstrndup.h xstrndup.c Include: "xstrndup.h" +License: +GPL + Maintainer: Simon Josefsson diff --git a/modules/xstrtod b/modules/xstrtod index 32ec544938..75399b5268 100644 --- a/modules/xstrtod +++ b/modules/xstrtod @@ -17,6 +17,9 @@ lib_SOURCES += xstrtod.h xstrtod.c Include: "xstrtod.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/xstrtoimax b/modules/xstrtoimax index e4169d921f..190b13ecb3 100644 --- a/modules/xstrtoimax +++ b/modules/xstrtoimax @@ -19,6 +19,9 @@ lib_SOURCES += xstrtoimax.c Include: "xstrtol.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/xstrtol b/modules/xstrtol index 73ccb2f441..398c7716e1 100644 --- a/modules/xstrtol +++ b/modules/xstrtol @@ -26,6 +26,9 @@ lib_SOURCES += xstrtol.h xstrtol.c xstrtoul.c Include: "xstrtol.h" +License: +GPL + Maintainer: Jim Meyering diff --git a/modules/xstrtoumax b/modules/xstrtoumax index d0f89fa08a..91891c0a09 100644 --- a/modules/xstrtoumax +++ b/modules/xstrtoumax @@ -18,6 +18,9 @@ lib_SOURCES += xstrtoumax.c Include: "xstrtol.h" +License: +GPL + Maintainer: Paul Eggert diff --git a/modules/xvasprintf b/modules/xvasprintf index 25240952c5..a84fd82bd3 100644 --- a/modules/xvasprintf +++ b/modules/xvasprintf @@ -17,5 +17,8 @@ lib_SOURCES += xvasprintf.h xvasprintf.c xasprintf.c Include: "xvasprintf.h" +License: +GPL + Maintainer: Oskar Liljeblad diff --git a/modules/yesno b/modules/yesno index ab0c3e3266..860f0fe94d 100644 --- a/modules/yesno +++ b/modules/yesno @@ -20,6 +20,9 @@ lib_SOURCES += yesno.c yesno.h Include: "yesno.h" +License: +GPL + Maintainer: Jim Meyering