From: Jason Self Date: Mon, 25 Feb 2019 01:08:31 +0000 (-0800) Subject: Add some missing license notices X-Git-Url: https://jxself.org/git/?p=skeinsum.git;a=commitdiff_plain;h=1de11a072b602fe586758d5e1670fa55d286cfba Add some missing license notices To avoid potential ambiguity. skeinsum is GPL-3.0-or-later. --- diff --git a/README b/README index d7bf313..efba2bc 100644 --- a/README +++ b/README @@ -12,3 +12,19 @@ The skeinsum home page is http://jxself.org/skein.shtml. Information about the Skein cryptographic hash function itself is available at http://www.skein-hash.info/ + +-- +This file is part of skeinsum. + +skeinsum is free software: you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +skeinsum is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with skeinsum. If not, see . \ No newline at end of file diff --git a/configure.ac b/configure.ac index 04f3357..f1e7a18 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,20 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. +# +# This file is part of skeinsum. +# +# skeinsum is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# skeinsum is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with skeinsum. If not, see . AC_PREREQ([2.69]) AC_INIT([skeinsum], m4_esyscmd_s([./version.sh]), [j@jxself.org], [], [https://jxself.org/skein.shtml]) diff --git a/makefile.am b/makefile.am index 567b923..8aea02c 100644 --- a/makefile.am +++ b/makefile.am @@ -1,3 +1,18 @@ +# This file is part of skeinsum. +# +# skeinsum is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# skeinsum is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with skeinsum. If not, see . + bin_PROGRAMS = skein256sum skein512sum skein1024sum skein256sum_SOURCES = skeinapi_ref.c skein.c skein256.c skein_block.c skein_debug.c skein_cli.c skein512sum_SOURCES = skeinapi_ref.c skein.c skein512.c skein_block.c skein_debug.c skein_cli.c