Skip to content

Commit 41836a9

Browse files
author
Luiz Capitulino
committed
Fix qtypes' licenses
- Change from GPL to LGPL - Add license text when missing - Minor cosmetic changes to make all headers look the same Signed-off-by: Luiz Capitulino <[email protected]>
1 parent 39b59d2 commit 41836a9

19 files changed

+73
-44
lines changed

check-qdict.c

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*
66
* Authors:
77
* Luiz Capitulino <[email protected]>
8+
*
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
811
*/
912
#include <check.h>
1013

check-qfloat.c

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
/*
22
* QFloat unit-tests.
33
*
4-
* Copyright (C) 2009 Red Hat Inc.
5-
*
6-
* Authors:
7-
* Luiz Capitulino <[email protected]>
8-
*
94
* Copyright IBM, Corp. 2009
105
*
116
* Authors:

check-qint.c

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*
66
* Authors:
77
* Luiz Capitulino <[email protected]>
8+
*
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
811
*/
912
#include <check.h>
1013

check-qlist.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
* Authors:
77
* Luiz Capitulino <[email protected]>
88
*
9-
* This work is licensed under the terms of the GNU GPL, version 2. See
10-
* the COPYING file in the top-level directory.
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
1111
*/
1212
#include <check.h>
1313

check-qstring.c

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*
66
* Authors:
77
* Luiz Capitulino <[email protected]>
8+
*
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
811
*/
912
#include <check.h>
1013

qbool.c

-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
/*
22
* QBool Module
33
*
4-
* Copyright (C) 2009 Red Hat Inc.
5-
*
6-
* Authors:
7-
* Luiz Capitulino <[email protected]>
8-
*
9-
* This work is licensed under the terms of the GNU GPL, version 2. See
10-
* the COPYING file in the top-level directory.
11-
*
124
* Copyright IBM, Corp. 2009
135
*
146
* Authors:

qdict.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*
2-
* QDict data type.
2+
* QDict Module
33
*
44
* Copyright (C) 2009 Red Hat Inc.
55
*
66
* Authors:
77
* Luiz Capitulino <[email protected]>
88
*
9-
* This work is licensed under the terms of the GNU GPL, version 2. See
10-
* the COPYING file in the top-level directory.
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
1111
*/
1212

1313
#include "qint.h"

qdict.h

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
* QDict Module
3+
*
4+
* Copyright (C) 2009 Red Hat Inc.
5+
*
6+
* Authors:
7+
* Luiz Capitulino <[email protected]>
8+
*
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
11+
*/
12+
113
#ifndef QDICT_H
214
#define QDICT_H
315

qemu-objects.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
* Authors:
77
* Luiz Capitulino <[email protected]>
88
*
9-
* This work is licensed under the terms of the GNU GPL, version 2. See
10-
* the COPYING file in the top-level directory.
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
1111
*/
12+
1213
#ifndef QEMU_OBJECTS_H
1314
#define QEMU_OBJECTS_H
1415

qerror.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* QError: QEMU Error data-type.
2+
* QError Module
33
*
44
* Copyright (C) 2009 Red Hat Inc.
55
*

qerror.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* QError header file.
2+
* QError Module
33
*
44
* Copyright (C) 2009 Red Hat Inc.
55
*

qfloat.c

-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
/*
22
* QFloat Module
33
*
4-
* Copyright (C) 2009 Red Hat Inc.
5-
*
6-
* Authors:
7-
* Luiz Capitulino <[email protected]>
8-
*
9-
* This work is licensed under the terms of the GNU GPL, version 2. See
10-
* the COPYING file in the top-level directory.
11-
*
124
* Copyright IBM, Corp. 2009
135
*
146
* Authors:

qint.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
/*
2-
* QInt data type.
2+
* QInt Module
33
*
44
* Copyright (C) 2009 Red Hat Inc.
55
*
66
* Authors:
77
* Luiz Capitulino <[email protected]>
88
*
9-
* This work is licensed under the terms of the GNU GPL, version 2. See
10-
* the COPYING file in the top-level directory.
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
1111
*/
12+
1213
#include "qint.h"
1314
#include "qobject.h"
1415
#include "qemu-common.h"

qint.h

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
* QInt Module
3+
*
4+
* Copyright (C) 2009 Red Hat Inc.
5+
*
6+
* Authors:
7+
* Luiz Capitulino <[email protected]>
8+
*
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
11+
*/
12+
113
#ifndef QINT_H
214
#define QINT_H
315

qlist.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
/*
2-
* QList data type.
2+
* QList Module
33
*
44
* Copyright (C) 2009 Red Hat Inc.
55
*
66
* Authors:
77
* Luiz Capitulino <[email protected]>
88
*
9-
* This work is licensed under the terms of the GNU GPL, version 2. See
10-
* the COPYING file in the top-level directory.
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
1111
*/
12+
1213
#include "qlist.h"
1314
#include "qobject.h"
1415
#include "qemu-queue.h"

qlist.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
/*
2-
* QList data type header.
2+
* QList Module
33
*
44
* Copyright (C) 2009 Red Hat Inc.
55
*
66
* Authors:
77
* Luiz Capitulino <[email protected]>
88
*
9-
* This work is licensed under the terms of the GNU GPL, version 2. See
10-
* the COPYING file in the top-level directory.
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
1111
*/
12+
1213
#ifndef QLIST_H
1314
#define QLIST_H
1415

qobject.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* Authors:
99
* Luiz Capitulino <[email protected]>
1010
*
11-
* This work is licensed under the terms of the GNU GPL, version 2. See
12-
* the COPYING file in the top-level directory.
11+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
12+
* See the COPYING.LIB file in the top-level directory.
1313
*
1414
* QObject Reference Counts Terminology
1515
* ------------------------------------

qstring.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
/*
2-
* QString data type.
2+
* QString Module
33
*
44
* Copyright (C) 2009 Red Hat Inc.
55
*
66
* Authors:
77
* Luiz Capitulino <[email protected]>
88
*
9-
* This work is licensed under the terms of the GNU GPL, version 2. See
10-
* the COPYING file in the top-level directory.
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
1111
*/
12+
1213
#include "qobject.h"
1314
#include "qstring.h"
1415
#include "qemu-common.h"

qstring.h

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
* QString Module
3+
*
4+
* Copyright (C) 2009 Red Hat Inc.
5+
*
6+
* Authors:
7+
* Luiz Capitulino <[email protected]>
8+
*
9+
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10+
* See the COPYING.LIB file in the top-level directory.
11+
*/
12+
113
#ifndef QSTRING_H
214
#define QSTRING_H
315

0 commit comments

Comments
 (0)