diff options
author | Felipe Franciosi | 2016-09-23 17:02:51 +0200 |
---|---|---|
committer | Paolo Bonzini | 2016-09-27 11:57:29 +0200 |
commit | cc9d8a3b2c41c22fb09f90f3085e6036c199c3ca (patch) | |
tree | 694ea8fbe078149b3a4ef6a5e8dab8bbff0020f5 /include | |
parent | checkpatch: downgrade "architecture specific defines should be avoided" (diff) | |
download | qemu-cc9d8a3b2c41c22fb09f90f3085e6036c199c3ca.tar.gz qemu-cc9d8a3b2c41c22fb09f90f3085e6036c199c3ca.tar.xz qemu-cc9d8a3b2c41c22fb09f90f3085e6036c199c3ca.zip |
compiler: Swap 'public domain' header for license
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 <felipe@nutanix.com>
Message-Id: <1474642971-11866-1-git-send-email-felipe@nutanix.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/compiler.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/qemu/compiler.h b/include/qemu/compiler.h index 338d3a65b3..157698bfa9 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 |