libmicrohttpd2

HTTP server C library (MHD 2.x, alpha)
Log | Files | Refs | README | LICENSE

commit 6f32a340f1b32c56f2ffaee9645df56c482e8e6b
parent b175251bcda68a73c9e437d8cab9ee82f494d1df
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Sat, 16 May 2026 21:08:23 +0200

configure: added SPDX licence identificator, clarified licence text

The licence has not been changed, only text is updated to match the
actual licence.

Diffstat:
Mconfigure.ac | 47+++++++++++++++++++++++++++++++++--------------
1 file changed, 33 insertions(+), 14 deletions(-)

diff --git a/configure.ac b/configure.ac @@ -1,26 +1,45 @@ -# This file is part of libmicrohttpd. -# (C) 2006-2021 Christian Grothoff (and other contributing authors) +# SPDX-License-Identifier: LGPL-2.1-or-later OR (GPL-2.0-or-later WITH eCos-exception-2.0) +# +# This file is part of GNU libmicrohttpd. # (C) 2014-2026 Evgeny Grin (Karlson2k) +# (C) 2006-2021 Christian Grothoff (and other contributing authors) # -# libmicrohttpd is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published -# by the Free Software Foundation; either version 3, or (at your -# option) any later version. +# GNU libmicrohttpd is free software; you can redistribute 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. # -# libmicrohttpd is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of +# GNU libmicrohttpd is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. +# Lesser General Public License for more details. # -# You should have received a copy of the GNU General Public License -# along with libmicrohttpd; see the file COPYING. If not, write to the -# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -# Boston, MA 02110-1301, USA. +# Alternatively, you can redistribute GNU libmicrohttpd 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, together +# with the eCos exception, as follows: # +# As a special exception, if other files instantiate templates or +# use macros or inline functions from this file, or you compile this +# file and link it with other works to produce a work based on this +# file, this file does not by itself cause the resulting work to be +# covered by the GNU General Public License. However the source code +# for this file must still be made available in accordance with +# section (3) of the GNU General Public License v2. # -# Process this file with autoconf to produce a configure script. +# This exception does not invalidate any other reasons why a work +# based on this file might be covered by the GNU General Public +# License. # +# You should have received copies of the GNU Lesser General Public +# License and the GNU General Public License along with this library; +# if not, see <https://www.gnu.org/licenses/>. # +dnl +dnl Process this file with autoconf to produce a configure script. +dnl + AC_PREREQ([2.64]) LT_PREREQ([2.4.0]) AC_INIT([GNU libmicrohttpd2],[1.99.0],[libmicrohttpd@gnu.org])