From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.1 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id B8EFB1F852 for ; Wed, 21 Dec 2022 08:55:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1671612936; bh=zYF1Y7V5RHQ7TEvU/Br6mUDsJCNBTHZIQlG95M+NWZk=; h=From:To:Subject:Date:From; b=nE7AECoYEAebAkFLtJ86k/Qpj4sPYwZZyLNwnlc7+TkaWaj5/TJKmf3+5+xQc8dOK qh+xsdnpfmFoXXJ6tWceJs7PZ3AVYpQxfSckszwxMOuiWo2exDSdbYHa2H9yAgIrgA JkQyjUgAGDK6vUMW4SB1NiK5r6s+aJjgrgYgz6oM= From: Eric Wong To: mwrap-perl@80x24.org Subject: [PATCH] mymalloc: relicense to LGPL-2.1+ Date: Wed, 21 Dec 2022 08:55:36 +0000 Message-Id: <20221221085536.2104645-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: These non-mwrap-specific pieces are candidates for glibc integration. So pick the same license as glibc for these parts. --- mymalloc.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mymalloc.h b/mymalloc.h index 518cce3..e781b43 100644 --- a/mymalloc.h +++ b/mymalloc.h @@ -1,6 +1,9 @@ /* * Copyright (C) mwrap hackers - * License: GPL-2.0+ + * License: LGPL-2.1+ + * + * Unlike the rest of the project, I'm happy with this being LGPL-2.1+ + * since the remote_free_* stuff is meant for glibc, anyways. * * This is a small wrapper on top of dlmalloc (dlmalloc_c.h) which * adds wait-free free(3) multi-threading support to avoid contention