Skip to content

Commit b72fcfc

Browse files
committed
WL#16213 GPL License Exception Update
Change-Id: I2beac1426f0dba1d48bf9ce85368e86b7152c22c
1 parent 05fbbb7 commit b72fcfc

File tree

1,242 files changed

+8664
-6198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,242 files changed

+8664
-6198
lines changed

CMakeLists.txt

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
8-
# but not limited to OpenSSL) that is licensed under separate terms, as
9-
# designated in a particular file or component or in included license
7+
# This program is designed to work with certain software (including
8+
# but not limited to OpenSSL) that is licensed under separate terms,
9+
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
14+
#
1315
# This program is distributed in the hope that it will be useful, but
1416
# WITHOUT ANY WARRANTY; without even the implied warranty of
1517
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

CTestConfig.cmake

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2015, 2024, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
8-
# but not limited to OpenSSL) that is licensed under separate terms, as
9-
# designated in a particular file or component or in included license
7+
# This program is designed to work with certain software (including
8+
# but not limited to OpenSSL) that is licensed under separate terms,
9+
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
14+
#
1315
# This program is distributed in the hope that it will be useful, but
1416
# WITHOUT ANY WARRANTY; without even the implied warranty of
1517
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

cmake/FindANTLR4.cmake

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# Copyright (c) 2016, 2022, Oracle and/or its affiliates.
1+
# Copyright (c) 2016, 2024, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
8-
# but not limited to OpenSSL) that is licensed under separate terms, as
9-
# designated in a particular file or component or in included license
7+
# This program is designed to work with certain software (including
8+
# but not limited to OpenSSL) that is licensed under separate terms,
9+
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
14+
#
1315
# This program is distributed in the hope that it will be useful, but
1416
# WITHOUT ANY WARRANTY; without even the implied warranty of
1517
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

cmake/FindMySQL.cmake

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
# -*- indent-tabs-mode:nil; -*-
22
# vim: set expandtab:
33
#
4-
# Copyright (c) 2008, 2020, Oracle and/or its affiliates.
4+
# Copyright (c) 2008, 2024, Oracle and/or its affiliates.
55
#
66
# This program is free software; you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License, version 2.0,
88
# as published by the Free Software Foundation.
99
#
10-
# This program is also distributed with certain software (including
11-
# but not limited to OpenSSL) that is licensed under separate terms, as
12-
# designated in a particular file or component or in included license
10+
# This program is designed to work with certain software (including
11+
# but not limited to OpenSSL) that is licensed under separate terms,
12+
# as designated in a particular file or component or in included license
1313
# documentation. The authors of MySQL hereby grant you an additional
1414
# permission to link the program and your derivative works with the
15-
# separately licensed software that they have included with MySQL.
15+
# separately licensed software that they have either included with
16+
# the program or referenced in the documentation.
17+
#
1618
# This program is distributed in the hope that it will be useful, but
1719
# WITHOUT ANY WARRANTY; without even the implied warranty of
1820
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

cmake/FindMySQLx.cmake

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# Copyright (c) 2015, 2023, Oracle and/or its affiliates.
1+
# Copyright (c) 2015, 2024, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
8-
# but not limited to OpenSSL) that is licensed under separate terms, as
9-
# designated in a particular file or component or in included license
7+
# This program is designed to work with certain software (including
8+
# but not limited to OpenSSL) that is licensed under separate terms,
9+
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
14+
#
1315
# This program is distributed in the hope that it will be useful, but
1416
# WITHOUT ANY WARRANTY; without even the implied warranty of
1517
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

cmake/WIX.template.in

+6-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
it under the terms of the GNU General Public License, version 2.0,
66
as published by the Free Software Foundation.
77

8-
This program is also distributed with certain software (including
9-
but not limited to OpenSSL) that is licensed under separate terms, as
10-
designated in a particular file or component or in included license
8+
This program is designed to work with certain software (including
9+
but not limited to OpenSSL) that is licensed under separate terms,
10+
as designated in a particular file or component or in included license
1111
documentation. The authors of MySQL hereby grant you an additional
1212
permission to link the program and your derivative works with the
13-
separately licensed software that they have included with MySQL.
13+
separately licensed software that they have either included with
14+
the program or referenced in the documentation.
15+
1416
This program is distributed in the hope that it will be useful, but
1517
WITHOUT ANY WARRANTY; without even the implied warranty of
1618
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

cmake/cmake_parse_arguments.cmake

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11

2-
# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2007, 2024, Oracle and/or its affiliates.
33
#
44
# This program is free software; you can redistribute it and/or modify
55
# it under the terms of the GNU General Public License, version 2.0,
66
# as published by the Free Software Foundation.
77
#
8-
# This program is also distributed with certain software (including
9-
# but not limited to OpenSSL) that is licensed under separate terms, as
10-
# designated in a particular file or component or in included license
8+
# This program is designed to work with certain software (including
9+
# but not limited to OpenSSL) that is licensed under separate terms,
10+
# as designated in a particular file or component or in included license
1111
# documentation. The authors of MySQL hereby grant you an additional
1212
# permission to link the program and your derivative works with the
13-
# separately licensed software that they have included with MySQL.
13+
# separately licensed software that they have either included with
14+
# the program or referenced in the documentation.
15+
#
1416
# This program is distributed in the hope that it will be useful, but
1517
# WITHOUT ANY WARRANTY; without even the implied warranty of
1618
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

cmake/compile_flags.cmake

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2014, 2024, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
8-
# but not limited to OpenSSL) that is licensed under separate terms, as
9-
# designated in a particular file or component or in included license
7+
# This program is designed to work with certain software (including
8+
# but not limited to OpenSSL) that is licensed under separate terms,
9+
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
14+
#
1315
# This program is distributed in the hope that it will be useful, but
1416
# WITHOUT ANY WARRANTY; without even the implied warranty of
1517
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

cmake/compiler.cmake

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# Copyright (c) 2015, 2021, Oracle and/or its affiliates.
1+
# Copyright (c) 2015, 2024, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
8-
# but not limited to OpenSSL) that is licensed under separate terms, as
9-
# designated in a particular file or component or in included license
7+
# This program is designed to work with certain software (including
8+
# but not limited to OpenSSL) that is licensed under separate terms,
9+
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
14+
#
1315
# This program is distributed in the hope that it will be useful, but
1416
# WITHOUT ANY WARRANTY; without even the implied warranty of
1517
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

cmake/cpu_info.cmake

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
# Copyright (c) 2009, 2022, Oracle and/or its affiliates.
1+
# Copyright (c) 2009, 2024, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
7+
# This program is designed to work with certain software (including
88
# but not limited to OpenSSL) that is licensed under separate terms,
99
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
1314
#
1415
# This program is distributed in the hope that it will be useful,
1516
# but WITHOUT ANY WARRANTY; without even the implied warranty of

cmake/curl.cmake

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
# Copyright (c) 2017, 2022, Oracle and/or its affiliates.
1+
# Copyright (c) 2017, 2024, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
7+
# This program is designed to work with certain software (including
88
# but not limited to OpenSSL) that is licensed under separate terms,
99
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
1314
#
1415
# This program is distributed in the hope that it will be useful,
1516
# but WITHOUT ANY WARRANTY; without even the implied warranty of

cmake/exeutils.cmake

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
8-
# but not limited to OpenSSL) that is licensed under separate terms, as
9-
# designated in a particular file or component or in included license
7+
# This program is designed to work with certain software (including
8+
# but not limited to OpenSSL) that is licensed under separate terms,
9+
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
14+
#
1315
# This program is distributed in the hope that it will be useful, but
1416
# WITHOUT ANY WARRANTY; without even the implied warranty of
1517
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

cmake/extra_install.cmake

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2016, 2024, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License as published by
55
# the Free Software Foundation; version 2 of the License.
66
#
7-
# This program is also distributed with certain software (including
8-
# but not limited to OpenSSL) that is licensed under separate terms, as
9-
# designated in a particular file or component or in included license
7+
# This program is designed to work with certain software (including
8+
# but not limited to OpenSSL) that is licensed under separate terms,
9+
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
14+
#
1315
# This program is distributed in the hope that it will be useful, but
1416
# WITHOUT ANY WARRANTY; without even the implied warranty of
1517
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

cmake/fuzzer.cmake

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
# Copyright (c) 2017, 2021, Oracle and/or its affiliates.
1+
# Copyright (c) 2017, 2024, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
7+
# This program is designed to work with certain software (including
88
# but not limited to OpenSSL) that is licensed under separate terms,
99
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
1314
#
1415
# This program is distributed in the hope that it will be useful,
1516
# but WITHOUT ANY WARRANTY; without even the implied warranty of

cmake/headers.cmake

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2015, 2024, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
8-
# but not limited to OpenSSL) that is licensed under separate terms, as
9-
# designated in a particular file or component or in included license
7+
# This program is designed to work with certain software (including
8+
# but not limited to OpenSSL) that is licensed under separate terms,
9+
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
14+
#
1315
# This program is distributed in the hope that it will be useful, but
1416
# WITHOUT ANY WARRANTY; without even the implied warranty of
1517
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

cmake/headers/check.cmake.in

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2015, 2024, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License, version 2.0,
55
# as published by the Free Software Foundation.
66
#
7-
# This program is also distributed with certain software (including
8-
# but not limited to OpenSSL) that is licensed under separate terms, as
9-
# designated in a particular file or component or in included license
7+
# This program is designed to work with certain software (including
8+
# but not limited to OpenSSL) that is licensed under separate terms,
9+
# as designated in a particular file or component or in included license
1010
# documentation. The authors of MySQL hereby grant you an additional
1111
# permission to link the program and your derivative works with the
12-
# separately licensed software that they have included with MySQL.
12+
# separately licensed software that they have either included with
13+
# the program or referenced in the documentation.
14+
#
1315
# This program is distributed in the hope that it will be useful, but
1416
# WITHOUT ANY WARRANTY; without even the implied warranty of
1517
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See

0 commit comments

Comments
 (0)