From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37099) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bnS0Y-0006JE-TA for qemu-devel@nongnu.org; Fri, 23 Sep 2016 11:03:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bnS0V-0003m5-4N for qemu-devel@nongnu.org; Fri, 23 Sep 2016 11:03:22 -0400 Received: from [62.254.189.133] (port=56225 helo=centos.localdomain) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bnS0U-0003VQ-QG for qemu-devel@nongnu.org; Fri, 23 Sep 2016 11:03:19 -0400 From: Felipe Franciosi Date: Fri, 23 Sep 2016 16:02:51 +0100 Message-Id: <1474642971-11866-1-git-send-email-felipe@nutanix.com> Subject: [Qemu-devel] [PATCH v3] compiler: Swap 'public domain' header for license List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Daniel P. Berrange" , Peter Maydell , Eric Blake , Markus Armbruster Cc: Luiz Capitulino , "qemu-devel@nongnu.org" , Pavel Dovgalyuk , Felipe Franciosi As discussed on the list [1], having a comment stating that this file is "public domain" is arguably wrong and not legally binding. This patch replaces that comment with a clear GPLv2+ license as proposed in [2]. [1] http://lists.nongnu.org/archive/html/qemu-devel/2016-09/msg06151.html [2] http://lists.nongnu.org/archive/html/qemu-devel/2016-09/msg06217.html Worth noting, compiler.h was originally created on 5c026320 by splitting qemu-common.h. At the time, qemu-common.h was already GPLv2+. Signed-off-by: Felipe Franciosi --- v3: Explicitly call out 5c026320 on the commit message. v2: Add a GPLv2+ statement after removing 'public domain' text. Amend the commit message and text to reflect it. include/qemu/compiler.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/qemu/compiler.h b/include/qemu/compiler.h index 338d3a6..157698b 100644 --- a/include/qemu/compiler.h +++ b/include/qemu/compiler.h @@ -1,4 +1,8 @@ -/* public domain */ +/* compiler.h: macros to abstract away compiler specifics + * + * This work is licensed under the terms of the GNU GPL, version 2 or later. + * See the COPYING file in the top-level directory. + */ #ifndef COMPILER_H #define COMPILER_H -- 1.9.5