1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: MariaDB Server
Upstream-Contact: https://jira.mariadb.org
Source: https://github.com/MariaDB/server
Comment:
Originally produced by a modified version of licensecheck2dep5
from CDBS by Clint Byrum <clint@ubuntu.com>. Hand modified to reduce
redundancy in the output and add appropriate license text. The file
has been rechecked against the source using the development version
of license-reconcile, see #686485.
.
Also, MySQL carries the "FOSS License Exception" specified in README
.
Quoting from README:
.
MySQL FOSS License Exception We want free and open source
software applications under certain licenses to be able to use
specified GPL-licensed MySQL client libraries despite the fact
that not all such FOSS licenses are compatible with version
2 of the GNU General Public License. Therefore there are
special exceptions to the terms and conditions of the GPLv2
as applied to these client libraries, which are identified
and described in more detail in the FOSS License Exception at
<http://www.mysql.com/about/legal/licensing/foss-exception.html>.
.
The text of the Above URL is quoted below, as of Aug 17, 2011.
.
> FOSS License Exception
> .
> Updated July 1, 2010
> .
> What is the FOSS License Exception? Oracle's Free and Open Source
> Software ("FOSS") License Exception (formerly known as the FLOSS
> License Exception) allows developers of FOSS applications to include
> Oracle's MySQL Client Libraries (also referred to as "MySQL Drivers"
> or "MySQL Connectors") with their FOSS applications. MySQL Client
> Libraries are typically licensed pursuant to version 2 of the General
> Public License ("GPL"), but this exception permits distribution of
> certain MySQL Client Libraries with a developer's FOSS applications
> licensed under the terms of another FOSS license listed below,
> even though such other FOSS license may be incompatible with the GPL.
> .
> The following terms and conditions describe the circumstances under
> which Oracle's FOSS License Exception applies.
> .
> Oracle's FOSS License Exception Terms and Conditions Definitions.
> "Derivative Work" means a derivative work, as defined under applicable
> copyright law, formed entirely from the Program and one or more
> FOSS Applications.
> .
> "FOSS Application" means a free and open source software application
> distributed subject to a license listed in the section below titled
> "FOSS License List."
> .
> "FOSS Notice" means a notice placed by Oracle or MySQL in a copy
> of the MySQL Client Libraries stating that such copy of the MySQL
> Client Libraries may be distributed under Oracle's or MySQL's FOSS
> (or FLOSS) License Exception.
> .
> "Independent Work" means portions of the Derivative Work that are not
> derived from the Program and can reasonably be considered independent
> and separate works.
> .
> "Program" means a copy of Oracle's MySQL Client Libraries that
> contains a FOSS Notice.
> .
> A FOSS application developer ("you" or "your") may distribute a
> Derivative Work provided that you and the Derivative Work meet all
> of the following conditions: You obey the GPL in all respects for
> the Program and all portions (including modifications) of the Program
> included in the Derivative Work (provided that this condition does not
> apply to Independent Works); The Derivative Work does not include any
> work licensed under the GPL other than the Program; You distribute
> Independent Works subject to a license listed in the section below
> titled "FOSS License List"; You distribute Independent Works in
> object code or executable form with the complete corresponding
> machine-readable source code on the same medium and under the same
> FOSS license applying to the object code or executable forms; All
> works that are aggregated with the Program or the Derivative Work
> on a medium or volume of storage are not derivative works of the
> Program, Derivative Work or FOSS Application, and must reasonably
> be considered independent and separate works. Oracle reserves all
> rights not expressly granted in these terms and conditions. If all
> of the above conditions are not met, then this FOSS License Exception
> does not apply to you or your Derivative Work.
> .
> FOSS License List
> .
> License Name Version(s)/Copyright Date
> Release Early Certified Software
> Academic Free License 2.0
> Apache Software License 1.0/1.1/2.0
> Apple Public Source License 2.0
> Artistic license From Perl 5.8.0
> BSD license "July 22 1999"
> Common Development and Distribution License (CDDL) 1.0
> Common Public License 1.0
> Eclipse Public License 1.0
> European Union Public License (EUPL)[1] 1.1
> GNU Library or "Lesser" General Public License (LGPL) 2.0/2.1/3.0
> GNU General Public License (GPL) 3.0
> IBM Public License 1.0
> Jabber Open Source License 1.0
> MIT License (As listed in file MIT-License.txt) -
> Mozilla Public License (MPL) 1.0/1.1
> Open Software License 2.0
> OpenSSL license (with original SSLeay license) "2003" ("1998")
> PHP License 3.0/3.01
> Python license (CNRI Python License) -
> Python Software Foundation License 2.1.1
> Sleepycat License "1999"
> University of Illinois/NCSA Open Source License -
> W3C License "2001"
> X11 License "2001"
> Zlib/libpng License -
> Zope Public License 2.0
> [1] When an Independent Work is licensed under a "Compatible License"
> pursuant to the EUPL, the Compatible License rather than the EUPL is
> the applicable license for purposes of these FOSS License Exception
> Terms and Conditions.
.
The above text is subject to this copyright notice:
© 2010, Oracle and/or its affiliates.
Files: *
Copyright:
2000-2016, Oracle and/or its affiliates. All rights reserved.
2008-2013 Monty Program AB
2008-2014 SkySQL Ab
2013-2016 MariaDB Corporation
2012-2016 MariaDB Foundation
License: GPL-2
Files: debian/*
Copyright:
1997-1998, Scott Hanson <shanson@debian.org>
1997 Christian Schwarz <schwarz@debian.org>
1999-2007, 2009, Christian Hammers <ch@debian.org>
2000-2001, Christopher C. Chimelis <chris@debian.org>
2001 Matthew Wilcox <willy@debian.org>
2005-2007, Sean Finney <seanius@debian.org>
2006 Adam Conrad <adconrad@0c3.net>
2007-2011, Norbert Tretkowski <norbert@tretkowski.de>
2007-2008, Monty Taylor <mordred@inaugust.com>
2008 Devin Carraway <devin@debian.org>
2008 Steffen Joeris <white@debian.org>
2009 Canonical Ltd
2010 Xavier Oswald <xoswald@debian.org>
2011 Clint Byrum <clint@ubuntu.com>
2011 Ondřej Surý <ondrej@debian.org>
2012 Nicholas Bamber <nicholas@periapt.co.uk>
2013,2016 Kristian Nielsen <knielsen@askmonty.org>
2013-2020 Otto Kekäläinen <otto@debian.org>
2014 Daniel Schepler <schepler@debian.org>
2014 Julien Muchembled <jm@jmuchemb.eu>
2014 Tobias Frost <tobi@coldtobi.de>
2015 Andreas Beckmann <anbe@debian.org>
2015-2016 Arnaud Fontaine <arnau@debian.org>
2015-2016 Daniel Black <daniel.black@openquery.com.au>
2015 Israel Tsadok <itsadok@gmail.com>
2015 Jan Wagner <waja@cyconet.org>
2015 Jean Weisbuch <jean@phpnet.org>
2015 Olaf van der Spek <olafvdspek@gmail.com>
2015-2106 Robie Basak <robie.basak@canonical.com>
2016 Axel Beckert <abe@debian.org>
2016 Dieter Adriaenssens <dieter.adriaenssens@gmail.com>
2016 Ian Gilfillan <ian@mariadb.org>
2016 James Cowgill <jcowgill@debian.org>
2016 Paul Gevers <elbrus@debian.org>
2016 Samuel Thibault <sthibault@debian.org>
2016 Vicențiu Ciorbaru <vicentiu@mariadb.org>
License: GPL-2+
Files: plugin/feedback/*
Copyright: 2010 Sergei Golubchik and Monty Program Ab
License: GPL-2
Files: debian/additions/mariadb-report*
Copyright: 2006-2008 Daniel Nichter <public@codenode.com>
2012-2015 Jean Weisbuch
License: GPL-2+
Files:
dbug/example1.c
dbug/example2.c
dbug/example3.c
dbug/factorial.c
dbug/main.c
dbug/my_main.c
dbug/remove_function_from_trace.pl
dbug/tests.c
dbug/tests-t.pl
mysql-test/*
support-files/binary-configure.sh
support-files/mysqld_multi.server.sh
Docs/*
Copyright: UNKNOWN
Comment: These files fall under the blanket license specified in the file
COPYING and README
GPLv2 Disclaimer:
For the avoidance of doubt, except that if any license choice
other than GPL or LGPL is available it will apply instead,
Oracle elects to use only the General Public License version 2
(GPLv2) at this time for any software where a choice of GPL
license versions is made available with the language indicating
that GPLv2 or any later version may be used, or where a choice
of which version of the GPL is applied is otherwise unspecified.
License: GPL-2
Files: BUILD/*
client/*
cmake/*
dbug/dbug_add_tags.pl
extra/*
include/*
libmysqld/*
libservices/*
mysql-test/include/have_perfschema.inc
mysql-test/lib/mtr_cases.pm
mysql-test/lib/mtr_gprof.pl
mysql-test/lib/mtr_io.pl
mysql-test/lib/mtr_match.pm
mysql-test/lib/mtr_process.pl
mysql-test/lib/mtr_report.pm
mysql-test/lib/mtr_results.pm
mysql-test/lib/mtr_stress.pl
mysql-test/lib/mtr_unique.pm
mysql-test/lib/My/Config.pm
mysql-test/lib/My/CoreDump.pm
mysql-test/lib/My/File/*
mysql-test/lib/My/Find.pm
mysql-test/lib/My/Handles.pm
mysql-test/lib/My/Options.pm
mysql-test/lib/My/Platform.pm
mysql-test/lib/My/SafeProcess/Base.pm
mysql-test/lib/My/SafeProcess/safe_kill_win.cc
mysql-test/lib/My/SafeProcess/safe_process.cc
mysql-test/lib/My/SafeProcess/safe_process_win.cc
mysql-test/lib/My/SysInfo.pm
mysql-test/lib/My/Test.pm
mysql-test/lib/t/*
mysql-test/lib/v1/mtr_cases.pl
mysql-test/lib/v1/mtr_gcov.pl
mysql-test/lib/v1/mtr_gprof.pl
mysql-test/lib/v1/mtr_im.pl
mysql-test/lib/v1/mtr_io.pl
mysql-test/lib/v1/mtr_match.pl
mysql-test/lib/v1/mtr_process.pl
mysql-test/lib/v1/mtr_report.pl
mysql-test/lib/v1/mtr_stress.pl
mysql-test/lib/v1/mtr_timer.pl
mysql-test/lib/v1/mtr_unique.pl
mysql-test/lib/v1/My/*
mysql-test/lib/v1/mysql-test-run.pl
mysql-test/lib/v1/mtr_misc.pl
mysql-test/mariadb-stress-test.pl
mysql-test/mariadb-test-run.pl
mysql-test/std_data/*
mysql-test/suite/perfschema/include/*
mysql-test/suite/perfschema_stress/include/*
mysys/*
win/packaging/ca/*
plugin/audit_null/*
plugin/auth_*
plugin/daemon_example/*
plugin/fulltext/*
scripts/*
sql/*
sql-common/*
storage/*
strings/*
support-files/MacOSX/*
support-files/compiler_warnings.supp
support-files/mysql.*
support-files/dtrace/*
tests/*
unittest/*
vio/*
Copyright: 1979-2009 MySQL AB
1995-2010 Sun Microsystems Inc
1994-1997,2000-2014 Oracle and/or its affiliates
2010 Kristian Nielsen
2012 MariaDB Services
2013 MariaDB Foundation
2010,2013 Sergei Golubchik
1985,1995,2008-2011,2012-2014 Monty Program AB
2008-2014 SykSQL Ab
1993-2014 Olivier Bertrand
2008-2014 Kentoku Shiba
2013 Sergey Vojtovich and MariaDB Foundation
2006 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
2012 Michael Widenius
2010-2011 DeNA Co.,Ltd.
2011 Kentoku SHIBA
License: GPL-2
Files: include/maria.h include/myisamchk.h
Copyright: 2006-2008 MySQL AB
2008-2009 Sun Microsystems, Inc
2009, 2013, Monty Program Ab
License: GPL-2+
Files: plugin/auth_pam/testing/pam_mariadb_mtr.c
Copyright: none
License: public-domain
Files: plugin/locale_info/locale_info.cc
Copyright: 2013, Spaempresarial - Brazil, Roberto Spadim
License: BSD-3-clause
Files: plugin/qc_info/qc_info.cc
Copyright: 2008, Roland Bouman
License: BSD-3-clause
Files: tests/async_queries.c tests/nonblock-wrappers.h
Copyright: 2011 Kristian Nielsen and Monty Program Ab
License: LGPL-2.1+
Files: include/ma_dyncol.h include/queues.h mysys/ma_dyncol.c mysys/queues.c
unittest/mysys/ma_dyncol-t.c
Copyright: 2010,2011,2013 Monty Program Ab
2011,2012 Oleksandr Byelkin
License: BSD-2-clause
Files: mysys/my_port.c
Copyright: 2002 MySQL AB
License: LGPL-2
Files: mysys/my_safehash.*
Copyright: 2003-2007 MySQL AB
License: GPL-2+
Files: strings/bmove_upp.c strings/is_prefix.c strings/llstr.c
strings/longlong2str.c strings/strcont.c strings/strfill.c strings/strmov.c
strings/strnmov.c strings/bchange.c strings/int2str.c strings/my_strtoll10.c
strings/str2int.c strings/strappend.c strings/strcend.c
Copyright: 2009-2013, Monty Program Ab
2000,2003 TXT DataKonsult Ab & Monty Program Ab
License: BSD-2-clause
Files: strings/strxmov.c
strings/strxnmov.c
strings/strnlen.c
Copyright: 2009-2011, Monty Program Ab
2000 TXT DataKonsult Ab & Monty Program Ab
Richard A. O'Keefe
License: BSD-2-clause
Files: client/async_example.c
Copyright: 2011 Kristian Nielsen and Monty Program Ab
License: LGPL-2.1+
Files: storage/oqgraph/*
Copyright:
2007-2013 Arjen G Lentz & Antony T Curtis for Open Query
2000-2006 MySQL AB
License: GPL-2+
Files: storage/connect/connect.cc
Copyright: 2004-2012 Olivier Bertrand
License: GPL-2+
Files: storage/oqgraph/ha_oqgraph.*
storage/oqgraph/oqgraph_probes.d
Copyright:
2007-2013 Arjen G Lentz & Antony T Curtis for Open Query
2000-2006 MySQL AB
License: GPL-2
Files: extra/*/INSTALL
Copyright: 1994-1996, 1999-2002, 2004-2006, Free Software Foundation, Inc.
License: unlimited-free-doc
This file is free documentation; the Free Software Foundation gives
unlimited permission to copy, distribute and modify it.
Files: mysql-test/lib/mtr_misc.pl
mysql-test/lib/My/SafeProcess.pm
Copyright: 2004, 2007, 2011, Oracle and/or its affiliates
License: LGPL
Files:
storage/myisam/ft_update.c
storage/myisam/fulltext.h
storage/myisam/ft_boolean_search.c
storage/myisam/ft_stopwords.c
storage/myisam/ft_nlq_search.c
storage/myisam/ft_parser.c
storage/myisam/myisam_ftdump.c
Copyright:
2000, 2001, 2010, 2011, Oracle and/or its affiliates
Sergei A. Golubchik
License: GPL-2
Files: storage/myisam/ft_myisam.c
Copyright: 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
License: GPL-2+
Files: storage/innobase/*
Copyright:
1994-2011 Sergei A. Golubchik
1996 Michael Widenius
1994-2014 Oracle and/or its affiliates
2008-2009 Google Inc
2009 Sun Microsystems, Inc
2009 Percona Inc
2013, 2014 SkySQL Ab
2012 Facebook Inc
License: GPL-2
Files: storage/maria/*
Copyright:
2008-2009 Sun Microsystems, Inc
2008 Sun AB
2006 MySQL Finland AB
2006 TCX DataKonsult AB
2003-2008 MySQL AB
2007-2008 Michael Widenius
2007 Guilhem Bichot
2006 Sergei A. Golubchik
2007 Sanja Belkin
2006 Ramil Kalimullin
2006 Alexey Botchkov
2008-2011 Monty Program Ab
2004-2008 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
License: GPL-2
Files: storage/sphinx/*
Copyright: 2001-2014 Andrew Aksyonoff
2008-2014 Sphinx Technologies Inc
License: GPL-2
Files: extra/readline/*
Copyright: 1987-2006 Free Software Foundation Inc
License: GPL-2+
Files: sql-bench/*.sh
Copyright: 2009 Sun Microsystems, Inc
2000-2007 MySQL AB
License: LGPL
Files: client/completion_hash.h
scripts/mysqlaccess.sh
scripts/mysql_fix_extensions.sh
scripts/mysql_setpermission.sh
storage/myisam/ftbench/ft-test-run.sh
storage/myisam/mi_test_all.sh
strings/ctype-uca.c
strings/ctype-ucs2.c
strings/ctype-utf8.c
support-files/MacOSX/postflight.sh
support-files/MacOSX/preflight.sh
mysql-test/lib/My/ConfigFactory.pm
BUILD/*.sh
BUILD/compile-solaris-amd64
BUILD/compile-amd64-valgrind-max
BUILD/compile-pentium64-max
BUILD/compile-pentium64
scripts/mysqlhotcopy.sh
scripts/mysqld_multi.sh
mysql-test/std_data/checkDBI_DBD-MariaDB.pl
Copyright: 2000-2013 Oracle and/or its affiliates
2000-2007 MySQL AB
2009 Sun Microsystems Inc
License: LGPL
Files: BUILD/util.sh
Copyright: 2010 Kristian Nielsen and Monty Program AB
License: GPL-2
Files: sql-bench/innotest1.sh
sql-bench/innotest1a.sh
sql-bench/innotest1b.sh
sql-bench/innotest2.sh
sql-bench/innotest2a.sh
sql-bench/innotest2b.sh
Copyright: 2000-2002 Innobase Oy & MySQL AB
Comment: These files fall under the blanket license specified in the file COPYING
License: GPL-2
Files: storage/myisam/rt_index.h
storage/myisam/rt_key.*
storage/myisam/rt_mbr.*
storage/myisam/sp_defs.h
Copyright:
2000,2002-2007 MySQL AB
Ramil Kalimullin
License: GPL-2
Files: strings/ctype-bin.c
strings/ctype-eucjpms.c
strings/ctype-ujis.c
Copyright:
2000,2002,2005-2011 Oracle and/or its affiliates
tommy@valley.ne.jp
License: LGPL
Files: scripts/mysqld_safe.sh
support-files/mysql-multi.server.sh
support-files/mysql.server.sh
Copyright: 1996 Abandoned TCX DataKonsult AB & Monty Program KB & Detron HB
License: public-domain
Files: storage/innobase/include/pars0grm.h storage/innobase/pars/pars0grm.cc
Copyright: 1995-2009 Innobase Oy.
1984,1989-1990,2000-2004 Free Software Foundation Inc.
License: GPL-2+-with-bison-exception
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
.
As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison.
Files: storage/innobase/fts/fts0pars.cc
storage/innobase/include/fts0pars.h
Copyright: 1984, 1989-1990, 2000-2006 Free Software Foundation, Inc.
License: GPL-3+-with-bison-exception
License: GPL-3+-with-bison-exception
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
.
As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison.
Files: include/t_ctype.h
strings/t_ctype.h
Copyright: 2000 MySQL AB
1998 Theppitak Karoonboonyanan
1998-1999 Pruet Boonma
License: GPL-2
Files: strings/strend.c
Copyright: Richard A. O'Keefe.
2000 TXT DataKonsult Ab & Monty Program Ab
2009-2011, Monty Program Ab
License: BSD-2-clause
Files: dbug/dbug.c
dbug/dbug_long.h
Copyright: 1987 Abandoned Fred Fish
License: public-domain
Files: scripts/dheadgen.pl
Copyright: 2008-2009 Sun Microsystems Inc
License: BSD-3-clause
Files: plugin/handler_socket/*
Copyright:
2010 DeNA Co.,Ltd.
License: BSD-3-clause
Files: plugin/auth_gssapi/*
Copyright: 2015 Shuang Qiu
2015 Robbie Harwood
License: BSD-2-clause
Files: plugin/file_key_management/*
Copyright: 2002-2012 eperi GmbH
License: GPL-2
Files: storage/mroonga/*
Copyright: 2011-2015 Kouhei Sutou <kou@clear-code.com>
2011-2013 Kentoku SHIBA
2010 Tetsuro IKEDA
2014 Kenji Maruyama <mmmaru777@gmail.com>
2014-2015 Naoya Murakami <naoya@createfield.com>
License: LGPL-2.1+
Files: storage/mroonga/vendor/groonga/vendor/plugins/groonga-normalizer-mysql/*
Copyright: 2009-2015 Brazil
License: LGPL-2.1+
Files: storage/spider/*
Copyright: 2008-2015 Kentoku Shiba
License: GPL-2
Files: strings/ctype-win1250ch.c
Copyright: 2002-2010 Oracle and/or its affiliates.
2001 Jan Pazdziora
License: GPL-2
Files: strings/ctype-tis620.c
Copyright: 1998 Theppitak Karoonboonyanan <thep@links.nectec.or.th>
1989-1991 Samphan Raruenrom <samphan@thai.com>
2000-2010 Oracle and/or its affiliates.
2003 Sathit Jittanupat
2001 Korakot Chaovavanich <korakot@iname.com> and
1998-1999 Pruet Boonma <pruet@eng.cmu.ac.th>
License: GPL-2
Files: storage/innobase/handler/ha_innodb.h
Copyright: 2000-2010 MySQL AB & Innobase Oy.
License: GPL-2
Files: strings/dtoa.c
Copyright: 2007-2012 Oracle and/or its affiliates.
1991,2000-2001 Lucent Technologies
License: LGPL
Files: scripts/mysqldumpslow.sh
Copyright:
2000-2002,2005-2008 MySQL AB
2008-2009 Sun Microsystems Inc
License: LGPL
Files: libmysqld/lib_sql.cc
Copyright: 2000 SWsoft company
License: SWsoft
This material is provided "as is", with absolutely no warranty expressed
or implied. Any use is at your own risk.
.
Permission to use or copy this software for any purpose is hereby granted
without fee, provided the above notices are retained on all copies.
Permission to modify the code and to distribute modified code is granted,
provided the above notices are retained, and a notice that the code was
modified is included with the above copyright notice.
Files: tests/mail_to_db.pl
Copyright: 1998 Abandoned TCX DataKonsult AB & Monty Program KB & Detron HB
License: public-domain
Files: scripts/mysqlaccess.conf
Copyright: 1997, Yves.Carlier@rug.ac.be
License: GPL-2
Files: debian/additions/innotop/*
Copyright: 2006-2009, Baron Schwartz <baron@xaprb.com>
License: GPL-2 or Artistic
Files: include/mysql_version.h.in
Copyright: 1996, 1999, 2001 MySQL AB
License: public-domain
Files: storage/federatedx/*
Copyright:
2007 Antony T Curtis
2008-2009 Patrick Galbraith
License: BSD-3-clause
Files: cmake/systemd.cmake
scripts/mariadb-service-convert
Copyright: 2015 Daniel Black
License: GPL-2
Files: wsrep-lib/*
sql/wsrep_*
scripts/wsrep_*
Copyright: 2008-2019 Codership Oy <http://www.codership.com>
License: GPL-2
Files: libmariadb/*
Copyright:
2000-2012 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
2006-2011 The PHP Group
2012-2013 Monty Program AB
2014-2020 MariaDB Corporation Ab
2014 Kristian Nielsen & MariaDB Corporation
License: LGPL-2+
Files: libmariadb/libmariadb/mariadb_dyncol.*
Copyright:
2011-2012 Oleksandr Byelkin
2011-2013 Monty Program Ab
License: BSD-2-clause
Files: libmariadb/libmariadb/ma_dtoa.*
Copyright:
1991, 2000-2001, Lucent Technologies
2007, 2012, Oracle and/or its affiliates.
License: LGPL
Files: libmariadb/unittest/libmariadb/getopt.*
Copyright:
1989-1994, Free Software Foundation, Inc
License: LGPL-2+
Files: libmariadb/cmake/FindIconv.cmake
Copyright:
2010, Michael Bell <michael.bell@web.de>
License: BSD-2-Clause
Files: storage/archive/azio.c
storage/archive/azlib.h
zlib/*
Copyright:
1995-2005 Jean-loup Gailly
1995-2005 Mark Adler
License: zlib/libpng
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
.
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Files: mysys/CMakeLists.txt
Copyright: 2006, 2014, Oracle and/or its affiliates
License: GPL-2
Files: plugin/server_audit/CMakeLists.txt
Copyright: 2013 Alexey Botchkov and SkySQL Ab
License: GPL-2
Files: zlib/CMakeLists.txt
Copyright: 2006, 2014, Oracle and/or its affiliates
License: GPL-2
License: GPL-2
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
On Debian and systems the full text of the GNU General Public
License version 2 can be found in the file
`/usr/share/common-licenses/GPL-2`
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
License: GPL-2+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
On Debian and systems the full text of the GNU General Public
License version 2 can be found in the file
`/usr/share/common-licenses/GPL-2`
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
License: LGPL
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; version 2
of the License.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
MA 02110-1301, USA
.
On Debian and systems the full text of the GNU Library General Public
License version 2 can be found in the file
`/usr/share/common-licenses/LGPL-2`
License: LGPL-2
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; version 2
of the License.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
MA 02110-1301, USA
.
On Debian and systems the full text of the GNU Library General Public
License version 2 can be found in the file
`/usr/share/common-licenses/LGPL-2`
License: LGPL-2+
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
.
You should have received a copy of the GNU Library General Public
License along with this library; if not see <https://www.gnu.org/licenses>
or write to the Free Software Foundation, Inc.,
51 Franklin St., Fifth Floor, Boston, MA 02110, USA
.
On Debian systems, the complete text of the GNU Library General Public
License version 2 can be found in "/usr/share/common-licenses/LGPL-2".
License: LGPL-2.1+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1, or (at your option)
any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
.
On Debian and systems the full text of the GNU Library General Public
License version 2.1 can be found in the file
`/usr/share/common-licenses/LGPL-2.1`
License: BSD-2-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
2. Redistributions in binary form must the following disclaimer in
the documentation and/or other materials provided with the
distribution.
License: BSD-3-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
License: Artistic
The "Artistic License"
.
Preamble
.
The intent of this document is to state the conditions under which a
Package may be copied, such that the Copyright Holder maintains some
semblance of artistic control over the development of the package,
while giving the users of the package the right to use and distribute
the Package in a more-or-less customary fashion, plus the right to make
reasonable modifications.
.
Definitions:
.
"Package" refers to the collection of files distributed by the
Copyright Holder, and derivatives of that collection of files
created through textual modification.
.
"Standard Version" refers to such a Package if it has not been
modified, or has been modified in accordance with the wishes
of the Copyright Holder as specified below.
.
"Copyright Holder" is whoever is named in the copyright or
copyrights for the package.
.
"You" is you, if you're thinking about copying or distributing
this Package.
.
"Reasonable copying fee" is whatever you can justify on the
basis of media cost, duplication charges, time of people involved,
and so on. (You will not be required to justify it to the
Copyright Holder, but only to the computing community at large
as a market that must bear the fee.)
.
"Freely Available" means that no fee is charged for the item
itself, though there may be fees involved in handling the item.
It also means that recipients of the item may redistribute it
under the same conditions they received it.
.
1. You may make and give away verbatim copies of the source form of the
Standard Version of this Package without restriction, provided that you
duplicate all of the original copyright notices and associated disclaimers.
.
2. You may apply bug fixes, portability fixes and other modifications
derived from the Public Domain or from the Copyright Holder. A Package
modified in such a way shall still be considered the Standard Version.
.
3. You may otherwise modify your copy of this Package in any way, provided
that you insert a prominent notice in each changed file stating how and
when you changed that file, and provided that you do at least ONE of the
following:
.
a) place your modifications in the Public Domain or otherwise make them
Freely Available, such as by posting said modifications to Usenet or
an equivalent medium, or placing the modifications on a major archive
site such as uunet.uu.net, or by allowing the Copyright Holder to include
your modifications in the Standard Version of the Package.
.
b) use the modified Package only within your corporation or organization.
.
c) rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided, and provide
a separate manual page for each non-standard executable that clearly
documents how it differs from the Standard Version.
.
d) make other distribution arrangements with the Copyright Holder.
.
4. You may distribute the programs of this Package in object code or
executable form, provided that you do at least ONE of the following:
.
a) distribute a Standard Version of the executables and library files,
together with instructions (in the manual page or equivalent) on where
to get the Standard Version.
.
b) accompany the distribution with the machine-readable source of
the Package with your modifications.
.
c) give non-standard executables non-standard names, and clearly
document the differences in manual pages (or equivalent), together
with instructions on where to get the Standard Version.
.
d) make other distribution arrangements with the Copyright Holder.
.
5. You may charge a reasonable copying fee for any distribution of this
Package. You may charge any fee you choose for support of this
Package. You may not charge a fee for this Package itself. However,
you may distribute this Package in aggregate with other (possibly
commercial) programs as part of a larger (possibly commercial) software
distribution provided that you do not advertise this Package as a
product of your own. You may embed this Package's interpreter within
an executable of yours (by linking); this shall be construed as a mere
form of aggregation, provided that the complete Standard Version of the
interpreter is so embedded.
.
6. The scripts and library files supplied as input to or produced as
output from the programs of this Package do not automatically fall
under the copyright of this Package, but belong to whoever generated
them, and may be sold commercially, and may be aggregated with this
Package. If such scripts or library files are aggregated with this
Package via the so-called "undump" or "unexec" methods of producing a
binary executable image, then distribution of such an image shall
neither be construed as a distribution of this Package nor shall it
fall under the restrictions of Paragraphs 3 and 4, provided that you do
not represent such an executable image as a Standard Version of this
Package.
.
7. C subroutines (or comparably compiled subroutines in other
languages) supplied by you and linked into this Package in order to
emulate subroutines and variables of the language defined by this
Package shall not be considered part of this Package, but are the
equivalent of input as in Paragraph 6, provided these subroutines do
not change the language in any way that would cause it to fail the
regression tests for the language.
.
8. Aggregation of this Package with a commercial distribution is always
permitted provided that the use of this Package is embedded; that is,
when no overt attempt is made to make this Package's interfaces visible
to the end user of the commercial distribution. Such use shall not be
construed as a distribution of this Package.
.
9. The name of the Copyright Holder may not be used to endorse or promote
products derived from this software without specific prior written permission.
.
10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
.
The End
License: public-domain
The work is public domain (no license).
|