Paul Eggert wrote on 2023-08-21:
> > When I run './check-copyright', I get (among other output) a small list
> > of inconsistencies:
> > 
> > Module License    File License      File name
> > ================= ================= =====================================
> > LGPLv2+           GPL               lib/alignalloc.h
> > LGPLv2+           GPL               lib/alignalloc.c
> > LGPL              GPL               lib/propername-lite.c
> > LGPL              GPL               lib/propername.h
> 
> Oh, I didn't think those two through carefully enough. It's fine to make 
> them both LGPLv2+ (I assume that would fix the issue).

For alignalloc, yes, this is the simple fix. Done:


2023-09-02  Bruno Haible  <[email protected]>

        alignalloc: Fix license header.
        Suggested by Paul Eggert in
        <https://lists.gnu.org/archive/html/bug-gnulib/2023-08/msg00170.html>.
        * lib/alignalloc.h: Make license header consistent with module
        description.
        * lib/alignalloc.c: Likewise.

diff --git a/lib/alignalloc.c b/lib/alignalloc.c
index 7d94ce2ca9..57524cf1bb 100644
--- a/lib/alignalloc.c
+++ b/lib/alignalloc.c
@@ -2,17 +2,17 @@
 
    Copyright 2022-2023 Free Software Foundation, Inc.
 
-   This program is free software: you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation, either version 3 of the License, or
-   (at your option) any later version.
+   This file is free software: you can redistribute it and/or modify
+   it under the terms of the GNU Lesser General Public License as
+   published by the Free Software Foundation; either version 2.1 of the
+   License, or (at your option) any later version.
 
-   This program is distributed in the hope that it will be useful,
+   This file is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
+   GNU Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
+   You should have received a copy of the GNU Lesser General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
 
 /* Written by Paul Eggert.  */
diff --git a/lib/alignalloc.h b/lib/alignalloc.h
index a3813db6f8..6a01aacb4f 100644
--- a/lib/alignalloc.h
+++ b/lib/alignalloc.h
@@ -2,17 +2,17 @@
 
    Copyright 2022-2023 Free Software Foundation, Inc.
 
-   This program is free software: you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation, either version 3 of the License, or
-   (at your option) any later version.
+   This file is free software: you can redistribute it and/or modify
+   it under the terms of the GNU Lesser General Public License as
+   published by the Free Software Foundation; either version 2.1 of the
+   License, or (at your option) any later version.
 
-   This program is distributed in the hope that it will be useful,
+   This file is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
+   GNU Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
+   You should have received a copy of the GNU Lesser General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
 
 /* Written by Paul Eggert.  */




Reply via email to