File: copyright

package info (click to toggle)
mingw-w64 8.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 113,696 kB
  • sloc: ansic: 1,219,876; sh: 9,117; javascript: 7,213; makefile: 5,579; yacc: 3,462; asm: 3,363; lex: 2,255; cpp: 172
file content (925 lines) | stat: -rw-r--r-- 35,569 bytes parent folder | download
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
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: mingw-w64
Source: http://mingw-w64.sourceforge.net/

Files: *
Copyright: 2009-2016 the mingw-w64 project
License: ZPL-2.1
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
    1. Redistributions in source code must retain the accompanying
       copyright notice, this list of conditions, and the following
       disclaimer.
    2. Redistributions in binary form must reproduce the accompanying
       copyright notice, this list of conditions, and the following
       disclaimer in the documentation and/or other materials provided
       with the distribution.
    3. Names of the copyright holders must not be used to endorse or
       promote products derived from this software without prior
       written permission from the copyright holders.
    4. The right to distribute this software or to use it for any
       purpose does not give you the right to use Servicemarks (sm) or
       Trademarks (tm) of the copyright holders.  Use of them is
       covered by separate agreement with the copyright holders.
    5. If any files are modified, you must cause the modified files to
       carry prominent notices stating that you changed the files and
       the date of any change.
 .
 Disclaimer
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
 EXPRESSED 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 COPYRIGHT HOLDERS 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.

Files: mingw-w64-crt/crt/*
       mingw-w64-crt/include/*
       mingw-w64-crt/intrincs/cpuid.c
       mingw-w64-crt/intrincs/in*.c
       mingw-w64-crt/intrincs/out*.c
       mingw-w64-crt/intrincs/rdtsc.c
       mingw-w64-crt/intrincs/readcr*.c
       mingw-w64-crt/intrincs/readmsr.c
       mingw-w64-crt/intrincs/writecr*.c
       mingw-w64-crt/intrincs/writemsr.c
       mingw-w64-crt/lib32/crtdll.def
       mingw-w64-crt/lib64/moldname-msvcrt.def
       mingw-w64-crt/libsrc/agt*.c
       mingw-w64-crt/libsrc/cdo*.c
       mingw-w64-crt/libsrc/dxva-uuid.c
       mingw-w64-crt/libsrc/emostore_i.c
       mingw-w64-crt/libsrc/iisext_i.c
       mingw-w64-crt/libsrc/mtsadmin_i.c
       mingw-w64-crt/libsrc/mtxadmin_i.c
       mingw-w64-crt/libsrc/scard*.c
       mingw-w64-crt/libsrc/scrnsave.c
       mingw-w64-crt/libsrc/tsuserex_i.c
       mingw-w64-crt/math/cbrt*.c
       mingw-w64-crt/math/cephes_emath.*
       mingw-w64-crt/math/copysign*
       mingw-w64-crt/math/cosh*.c
       mingw-w64-crt/math/erfl.c
       mingw-w64-crt/math/expf.c
       mingw-w64-crt/math/fabs*.c
       mingw-w64-crt/math/fdim*.c
       mingw-w64-crt/math/fm*
       mingw-w64-crt/math/fp*.c
       mingw-w64-crt/math/i*
       mingw-w64-crt/math/ldexp*.c
       mingw-w64-crt/math/lgamma*.c
       mingw-w64-crt/math/llr*
       mingw-w64-crt/math/log10f.c
       mingw-w64-crt/math/logf.c
       mingw-w64-crt/math/lr*.c
       mingw-w64-crt/math/m*
       mingw-w64-crt/math/n*
       mingw-w64-crt/math/powf.c
       mingw-w64-crt/math/r*
       mingw-w64-crt/math/signbit*.c
       mingw-w64-crt/math/sinh*
       mingw-w64-crt/math/t*
       mingw-w64-crt/math/x86/acosf.c
       mingw-w64-crt/math/x86/acosl.c
       mingw-w64-crt/math/x86/asin*.c
       mingw-w64-crt/math/x86/atan*.c
       mingw-w64-crt/math/x86/ceil*.S
       mingw-w64-crt/math/x86/_chgsignl.S
       mingw-w64-crt/math/x86/cosf.c
       mingw-w64-crt/math/x86/cosl_internal.S
       mingw-w64-crt/math/x86/cossin.c
       mingw-w64-crt/math/x86/exp2*.S
       mingw-w64-crt/math/x86/fastmath.h
       mingw-w64-crt/math/x86/floor*.S
       mingw-w64-crt/math/x86/log*.S
       mingw-w64-crt/math/x86/logb*.c
       mingw-w64-crt/math/x86/scalbn*.S
       mingw-w64-crt/math/x86/sinf.c
       mingw-w64-crt/math/x86/sinl_internal.S
       mingw-w64-crt/misc/*
       mingw-w64-crt/profile/mcountFunc.S
       mingw-w64-crt/stdio/atoll.c
       mingw-w64-crt/stdio/_Exit.c
       mingw-w64-crt/stdio/fopen64.c
       mingw-w64-crt/stdio/fseeko64.c
       mingw-w64-crt/stdio/ftello64.c
       mingw-w64-crt/stdio/lltoa.c
       mingw-w64-crt/stdio/lltow.c
       mingw-w64-crt/stdio/lseek64.c
       mingw-w64-crt/stdio/mingw_fprintfw.c
       mingw-w64-crt/stdio/mingw_pformatw.c
       mingw-w64-crt/stdio/mingw_printfw.c
       mingw-w64-crt/stdio/mingw_snprintfw.c
       mingw-w64-crt/stdio/mingw_sprintfw.c
       mingw-w64-crt/stdio/mingw_vfprintfw.c
       mingw-w64-crt/stdio/mingw_vprintfw.c
       mingw-w64-crt/stdio/mingw_vsnprintfw.c
       mingw-w64-crt/stdio/mingw_vsprintfw.c
       mingw-w64-crt/stdio/snprintf.c
       mingw-w64-crt/stdio/snwprintf.c
       mingw-w64-crt/stdio/strtof.c
       mingw-w64-crt/stdio/ulltoa.c
       mingw-w64-crt/stdio/ulltow.c
       mingw-w64-crt/stdio/v*scanf*
       mingw-w64-crt/stdio/vs*printf*
       mingw-w64-crt/stdio/wtoll.c
       mingw-w64-crt/testcases/tstmainc.c
       mingw-w64-crt/testcases/tstmaincpp.cpp
       mingw-w64-crt/testcases/tstmain_sys_xxx.c
       mingw-w64-crt/testcases/tstwassert.c
       mingw-w64-crt/testcases/tstwassert_win.c
       mingw-w64-crt/testcases/tstwinmain.c
       mingw-w64-headers/crt/*
       mingw-w64-headers/ddk/include/d3dnthal.h
       mingw-w64-headers/ddk/include/ddk/afilter.h
       mingw-w64-headers/ddk/include/ddk/atm.h
       mingw-w64-headers/ddk/include/ddk/d4drvif.h
       mingw-w64-headers/ddk/include/ddkernel.h
       mingw-w64-headers/ddk/include/ddk/hidclass.h
       mingw-w64-headers/ddk/include/ddk/ide.h
       mingw-w64-headers/ddk/include/ddk/ioaccess.h
       mingw-w64-headers/ddk/include/ddk/kbdmou.h
       mingw-w64-headers/ddk/include/ddk/mcd.h
       mingw-w64-headers/ddk/include/ddk/miniport.h
       mingw-w64-headers/ddk/include/ddk/minitape.h
       mingw-w64-headers/ddk/include/ddk/ndis*.h
       mingw-w64-headers/ddk/include/ddk/ntagp.h
       mingw-w64-headers/ddk/include/ddk/ntddk.h
       mingw-w64-headers/ddk/include/ddk/ntddpcm.h
       mingw-w64-headers/ddk/include/ddk/ntddsnd.h
       mingw-w64-headers/ddk/include/ddk/ntifs.h
       mingw-w64-headers/ddk/include/ddk/ntpoapi.h
       mingw-w64-headers/ddk/include/ddk/ntstrsafe.h
       mingw-w64-headers/ddk/include/ddk/parallel.h
       mingw-w64-headers/ddk/include/ddk/pfhook.h
       mingw-w64-headers/ddk/include/ddk/poclass.h
       mingw-w64-headers/ddk/include/ddk/portcls.h
       mingw-w64-headers/ddk/include/ddk/punknown.h
       mingw-w64-headers/ddk/include/ddk/scsi*.h
       mingw-w64-headers/ddk/include/ddk/smbus.h
       mingw-w64-headers/ddk/include/ddk/srb.h
       mingw-w64-headers/ddk/include/ddk/stdunk.h
       mingw-w64-headers/ddk/include/ddk/storport.h
       mingw-w64-headers/ddk/include/ddk/tdikrnl.h
       mingw-w64-headers/ddk/include/ddk/tdistat.h
       mingw-w64-headers/ddk/include/ddk/upssvc.h
       mingw-w64-headers/ddk/include/ddk/usbscan.h
       mingw-w64-headers/ddk/include/ddk/video*.h
       mingw-w64-headers/ddk/include/ddk/wdm*.h
       mingw-w64-headers/ddk/include/ddk/ws2san.h
       mingw-w64-headers/ddk/include/ddk/xfilter.h
       mingw-w64-headers/ddk/include/ddrawint.h
       mingw-w64-headers/ddk/include/dmemmgr.h
       mingw-w64-headers/ddk/include/dvp.h
       mingw-w64-headers/include/*
Copyright: public-domain
License: public-domain

Files: mingw-w64-crt/gdtoa/*
       mingw-w64-crt/stdio/mingw_pformat.c
Copyright: 1997-2001 Lucent Technologies
License: Lucent
 Permission to use, copy, modify, and distribute this software and
 its documentation for any purpose and without fee is hereby
 granted, provided that the above copyright notice appear in all
 copies and that both that the copyright notice and this
 permission notice and warranty disclaimer appear in supporting
 documentation, and that the name of Lucent or any of its entities
 not be used in advertising or publicity pertaining to
 distribution of the software without specific, written prior
 permission.
 .
 LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
 SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
 IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
 THIS SOFTWARE.

Files: mingw-w64-crt/gdtoa/qnan.c
       mingw-w64-crt/gdtoa/strtodnrp.c
Copyright: 2004, 2005 David M. Gay
           1998, 2000 Lucent Technologies
License: David-Gay
 Permission to use, copy, modify, and distribute this software and its
 documentation for any purpose and without fee is hereby granted,
 provided that the above copyright notice appear in all copies and
 that both that the copyright notice and this permission notice and
 warranty disclaimer appear in supporting documentation, and that the
 name of the author or any of his current or former employers not be
 used in advertising or publicity pertaining to distribution of the
 software without specific, written prior permission.
 .
 THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN
 NO EVENT SHALL THE AUTHOR OR ANY OF HIS CURRENT OR FORMER EMPLOYERS
 BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
 DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
 ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
 OF THIS SOFTWARE.

Files: mingw-w64-crt/math/s_erf.c
       mingw-w64-crt/math/sf_erf.c
       mingw-w64-crt/math/softmath/bsd_private.h
       mingw-w64-crt/math/softmath/bsd_privatef.h
       mingw-w64-crt/math/softmath/e_fmod.c
       mingw-w64-crt/math/softmath/e_fmodf.c
       mingw-w64-crt/math/softmath/e_pow.c
       mingw-w64-crt/math/softmath/e_powf.c
       mingw-w64-crt/math/softmath/e_remainder.c
       mingw-w64-crt/math/softmath/e_remainderf.c
       mingw-w64-crt/math/softmath/softmath_private.h
Copyright: 1993 Sun Microsystems, Inc.
License: Permissive-Sun
 Permission to use, copy, modify, and distribute this software is
 freely granted, provided that this notice is preserved.

Files: mingw-w64-crt/misc/basename.c
       mingw-w64-crt/misc/dirname.c
       mingw-w64-crt/stdio/mingw_fprintf.c
       mingw-w64-crt/stdio/mingw_pformat.*
       mingw-w64-crt/stdio/mingw_printf.c
       mingw-w64-crt/stdio/mingw_snprintf.c
       mingw-w64-crt/stdio/mingw_sprintf.c
       mingw-w64-crt/stdio/mingw_vfprintf.c
       mingw-w64-crt/stdio/mingw_vprintf.c
       mingw-w64-crt/stdio/mingw_vsnprintf.c
       mingw-w64-crt/stdio/mingw_vsprintf.c
Copyright: Keith Marshall
License: Keith-Marshall
 This is free software.  You may redistribute and/or modify it as you
 see fit, without restriction of copyright.
 .
 This software is provided "as is", in the hope that it may be useful,
 but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
 MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE.  At no
 time will the author accept any form of liability for any damages,
 however caused, resulting from the use of this software.

Files: mingw-w64-crt/misc/getopt.c
Copyright: 2000 The NetBSD Foundation, Inc.
           2002 Todd C. Miller <Todd.Miller@courtesan.com>
License: BSD-2-clause-NetBSD and ISC

Files: mingw-w64-crt/profile/gcrt0.c
       mingw-w64-crt/profile/profil.*
Copyright: 1998-2002 Red Hat, Inc.
License: Cygwin
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License (GPL) 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.
 .
 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 St, Fifth Floor, Boston, MA 02110-1301,
 USA.
 .
                         *** NOTE ***
 .
 In accordance with section 10 of the GPL, Red Hat permits programs
 whose sources are distributed under a license that complies with the
 Open Source definition to be linked with libcygwin.a without
 libcygwin.a itself causing the resulting program to be covered by the
 GNU GPL.
 .
 This means that you can port an Open Source(tm) application to
 cygwin, and distribute that executable as if it didn't include a copy
 of libcygwin.a linked into it.  Note that this does not apply to the
 cygwin DLL itself.  If you distribute a (possibly modified) version
 of the DLL you must adhere to the terms of the GPL, i.e. you must
 provide sources for the cygwin DLL.
 .
 See http://www.opensource.org/docs/definition_plain.html for the
 precise Open Source Definition referenced above.
 .
 Red Hat sells a special Cygwin License for customers who are unable
 to provide their application in open source code form.  For more
 information, please see:
 http://www.redhat.com/software/tools/cygwin/, or call 866-2REDHAT
 ext.  3007

Files: mingw-w64-crt/profile/gmon.*
       mingw-w64-crt/profile/mcount.c
Copyright: 1983, 1992, 1993 The Regents of the University of California
License: BSD-3-clause

Files: mingw-w64-crt/stdio/strtok_r.c
Copyright: 1988, 1993 The Regents of the University of California
           1998 Softweyr LLC
License: BSD-3-clause

Files: mingw-w64-headers/crt/profile.h
Copyright: 1992, 1993 The Regents of the University of California
License: BSD-3-clause

Files: mingw-w64-headers/crt/stdarg.h
Copyright: 1989, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
License: GPL-2+

Files: mingw-w64-headers/ddk/include/ddk/csq.h
Copyright: 2004 Vizzini (vizzini@plasmic.com)
License: public-domain-Vizzini
 THIS SOFTWARE IS NOT COPYRIGHTED
 .
 This source code is offered for use in the public domain. You may
 use, modify or distribute it freely.
 .
 This code is distributed in the hope that it will be useful but
 WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
 DISCLAIMED. This includes but is not limited to warranties of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Files: mingw-w64-headers/ddk/include/ddk/d3dhal.h
       mingw-w64-headers/ddk/include/ddrawi.h
       mingw-w64-headers/include/d3dhal.h
       mingw-w64-headers/include/d3dvec.inl
       mingw-w64-headers/include/ddrawi.h
       mingw-w64-headers/include/dsdriver.h
Copyright: 2000, 2001 Ove Kaaven
License: LGPL-2.1+

Files: mingw-w64-headers/include/amaudio.h
Copyright: 2010 Maarten Lankhorst for CodeWeavers
License: LGPL-2.1+

Files: mingw-w64-headers/include/amstream.idl
       mingw-w64-headers/include/austream.idl
       mingw-w64-headers/include/d3dx9effect.h
       mingw-w64-headers/include/d3dx9shape.h
       mingw-w64-headers/include/ddstream.idl
       mingw-w64-headers/include/dxfile.h
       mingw-w64-headers/include/evcode.h
       mingw-w64-headers/include/mmstream.idl
Copyright: 2004, 2010 Christian Costa
License: LGPL-2.1+

Files: mingw-w64-headers/include/amvideo.idl
       mingw-w64-headers/include/ax*.idl
Copyright: 2002, 2003 Robert Shearman
License: LGPL-2.1+

Files: mingw-w64-headers/include/audevcod.h
       mingw-w64-headers/include/dmo.h
       mingw-w64-headers/include/dmoreg.h
       mingw-w64-headers/include/dmort.h
       mingw-w64-headers/include/dshow.h
       mingw-w64-headers/include/mediaerr.h
       mingw-w64-headers/include/vfwmsgs.h
Copyright: 2002 Alexandre Julliard
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d10_1.idl
       mingw-w64-headers/include/d3d11_1.idl
       mingw-w64-headers/include/d3d11sdklayers.idl
       mingw-w64-headers/include/dxgi1_2.idl
       mingw-w64-headers/include/objectarray.idl
       mingw-w64-headers/include/optary.idl
       mingw-w64-headers/include/uiautomation*
       mingw-w64-headers/include/urlhist.idl
       mingw-w64-headers/include/wpcapi.idl
Copyright: 2006, 2010-2014 Jacek Caban for CodeWeavers
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d10_1shader.h
Copyright: 2010 Rico Schüller
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d10effect.h
       mingw-w64-headers/include/d3d10misc.h
       mingw-w64-headers/include/d3d10shader.h
Copyright: 2008, 2009 Henri Verbeet for CodeWeavers
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d10.idl
Copyright: 2007 Andras Kovacs
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d10sdklayers.idl
       mingw-w64-headers/include/drmexternals.idl
       mingw-w64-headers/include/wmdrmsdk.idl
Copyright: 2016, 2017 Alistair Leslie-Hughes
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d11.idl
Copyright: 2010 Rico Schüller
	   2013 Austin English
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d11_?.idl
       mingw-w64-headers/include/dxgi1_?.idl
       mingw-w64-headers/include/dxgicommon.idl
Copyright: 2017 Ihsan Akmal
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d11shader.h
       mingw-w64-headers/include/d3dcommon.idl
       mingw-w64-headers/include/d3dcompiler.h
Copyright: 2010 Matteo Bruni for CodeWeavers
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d8.h
       mingw-w64-headers/include/d3d8caps.h
       mingw-w64-headers/include/d3d8types.h
Copyright: 2002-2003 Jason Edmeades
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d9caps.h
       mingw-w64-headers/include/d3d9.h
Copyright: 2002-2003 Jason Edmeades
	   	     Raphael Junqueria
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d9types.h
Copyright: 2002-2003 Jason Edmeades
	   2002-2003 Raphael Junqueria
	   2005 Oliver Steiber
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3d.h
       mingw-w64-headers/include/ddraw.h
       mingw-w64-headers/include/dinput.h
       mingw-w64-headers/include/dplay.h
       mingw-w64-headers/include/dsound.h
Copyright: the Wine project
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3drmdef.h
Copyright: 2007, 2010 Vijay Kiran Kamuju
	   2007 David Adam
	   2010 Christian Costa
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3drm.h
Copyright: 2005 Peter Berg Larsen
	   2010 Christian Costa
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3drmobj.h
Copyright: 2008 Vijay Kiran Kamuju
	   2010 Christian Costa
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3dtypes.h
       mingw-w64-headers/include/d3dcaps.h
Copyright: 1999, 2000 Peter Hunnisett
License: LGPL-2.1+

Files: mingw-w64-headers/include/dpaddr.h
       mingw-w64-headers/include/dplay8.h
       mingw-w64-headers/include/dplobby8.h
       mingw-w64-headers/include/dxdiag.h
Copyright: 2002-2005 Raphael Junqueira
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3dx9.h
Copyright: 2007 David Adam
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3dx9math.*
       mingw-w64-headers/include/d3dx9mesh.h
Copyright: 2007 David Adam
	   2007 Tony Wasserka
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3dx9shader.h
Copyright: 2008 Luis Busquets
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3dx9anim.h
       mingw-w64-headers/include/d3dx9xof.h
Copyright: 2011 Dylan Smith
License: LGPL-2.1+

Files: mingw-w64-headers/include/d3dx9core.h
       mingw-w64-headers/include/d3dx9tex.h
Copyright: 2007, 2008 Tony Wasserka
License: LGPL-2.1+

Files: mingw-w64-headers/include/dls1.h
       mingw-w64-headers/include/dls2.h
       mingw-w64-headers/include/dmdls.h
       mingw-w64-headers/include/dmerror.h
       mingw-w64-headers/include/dmplugin.h
       mingw-w64-headers/include/dmusbuff.h
       mingw-w64-headers/include/dmusicc.h
       mingw-w64-headers/include/dmusicf.h
       mingw-w64-headers/include/dmusici.h
       mingw-w64-headers/include/dmusics.h
Copyright: 2003-2004 Rok Mandeljc
License: LGPL-2.1+

Files: mingw-w64-headers/include/dmodshow.idl
       mingw-w64-headers/include/medparam.idl
       mingw-w64-headers/include/qnetwork.idl
Copyright: 2007 Shane King
License: LGPL-2+

Files: mingw-w64-headers/include/dplobby.h
Copyright: 1999 Francois Gouget
           1999 Peter Hunnisett
License: LGPL-2.1+

Files: mingw-w64-headers/include/dpnathlp.h
       mingw-w64-headers/include/dvdmedia.h
       mingw-w64-headers/include/vmr9.idl
Copyright: 2006, 2008 Maarten Lankhorst
License: LGPL-2.1+

Files: mingw-w64-headers/include/dsconf.h
       mingw-w64-headers/include/dxerr8.h
       mingw-w64-headers/include/dxerr9.h
Copyright: 2003, 2004 Robert Reif
License: LGPL-2.1+

Files: mingw-w64-headers/include/dxgiformat.idl
Copyright: 2016 Józef Kucia for CodeWeavers
License: LGPL-2.1+

Files: mingw-w64-headers/include/dxgitype.idl
       mingw-w64-headers/include/dxgi.idl
Copyright: 2007 Andras Kovacs
License: LGPL-2.1+

Files: mingw-w64-headers/include/errors.h
Copyright: 2006 Hans Leideker
License: LGPL-2.1+

Files: mingw-w64-headers/include/mediaobj.idl
Copyright: 2002 Alexandre Julliard
	   2004 Vincent Béron
License: LGPL-2.1+

Files: mingw-w64-headers/include/qedit.idl
Copyright: 2008 Google (Lei Zhang)
License: LGPL-2.1+

Files: mingw-w64-headers/include/xinput.h
Copyright: 2008 Andrew Fenn
License: LGPL-2.1+

Files: mingw-w64-headers/include/GL/*
Copyright: 2013-2014 The Khronos Group Inc.
License: expat

Files: mingw-w64-headers/include/audioclient.idl
       mingw-w64-headers/include/audiopolicy.idl
       mingw-w64-headers/include/devicetopology.idl
       mingw-w64-headers/include/endpointvolume.idl
       mingw-w64-headers/include/mmdeviceapi.idl
       mingw-w64-headers/include/propkeydef.h
       mingw-w64-headers/include/propsys.idl
       mingw-w64-headers/include/structuredquerycondition.idl
Copyright: 2009 Maarten Lankhorst
License: LGPL-2.1+

Files: mingw-w64-headers/include/corerror.h
Copyright: 2008 James Hawkins
           2014 Kai Tietz
License: LGPL-2.1+

Files: mingw-w64-headers/include/ctfutb.idl
Copyright: 2010 Justin Chevrier
License: LGPL-2.1+

Files: mingw-w64-headers/include/downloadmgr.idl
Copyright: 2005 Jacek Caban
License: LGPL-2.1+

Files: mingw-w64-headers/include/fusion.idl
Copyright: 2008 James Hawkins
License: LGPL-2.1+

Files: mingw-w64-headers/include/icftypes.idl
       mingw-w64-headers/include/netfw.idl
Copyright: 2007 Jeff Latimer
License: LGPL-2.1+

Files: mingw-w64-headers/include/knownfolders.h
Copyright: 2010 Hans Leidekker for CodeWeavers
License: LGPL-2.1+

Files: mingw-w64-headers/include/mscat.h
       mingw-w64-headers/include/rpcsal.h
       mingw-w64-headers/include/winhttp.h
       mingw-w64-headers/include/winineti.h
Copyright: 2004, 2007, 2011 Francois Gouget
License: LGPL-2.1+

Files: mingw-w64-headers/include/mscoree.idl
Copyright: 2007 Francois Gouget
           2008 Alistair Leslie-Hughes
License: LGPL-2.1+

Files: mingw-w64-headers/include/msctf.idl
Copyright: 2008 Aric Stewart, CodeWeavers
License: LGPL-2.1+

Files: mingw-w64-headers/include/propkey.h
Copyright: 2010 Maarten Lankhorst for CodeWeavers
License: LGPL-2.1+

Files: mingw-w64-headers/include/propvarutil.h
Copyright: 2008 James Hawkins for CodeWeavers
License: LGPL-2.1+

Files: mingw-w64-headers/include/t2embapi.h
Copyright: 2009 Andrew Nguyen
License: LGPL-2.1+

Files: mingw-w64-headers/include/taskschd.idl
       mingw-w64-headers/tlb/oleacc.idl
Copyright: 2013 Dmitry Timoshkov
License: LGPL-2.1+

Files: mingw-w64-headers/include/textstor.idl
Copyright: 2009 Aric Stewart, CodeWeavers
License: BSD-3-clause-MinGW-w64
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * 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.
    * Neither the name of the mingw-w64 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 COPYRIGHT HOLDERS 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 COPYRIGHT
 HOLDERS 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.

Files: mingw-w64-headers/include/wincodec.idl
Copyright: 2009 Vincent Povirk for CodeWeavers
License: LGPL-2.1+

Files: mingw-w64-headers/include/winddiui.h
Copyright: 2007 Marcel Partap
License: LGPL-2.1+

Files: mingw-w64-headers/include/wmsbuffer.idl
       mingw-w64-headers/include/wmsdkidl.idl
Copyright: 2012 André Hentschel
License: LGPL-2.1+

Files: mingw-w64-headers/include/xmllite.idl
Copyright: 2010 Nikolay Sivov
License: LGPL-2.1+

Files: mingw-w64-headers/tlb/stdole2.idl
Copyright: 2003 Robert Shearman
           2005 Huw Davies
License: LGPL-2.1+

Files: mingw-w64-libraries/libmangle/*
Copyright: 2009, 2010 mingw-w64 project
License: expat

Files: mingw-w64-libraries/pseh/*
Copyright: 2004/2005, 2008, 2009, 2010 KJK::Hyperion
License: expat

Files: mingw-w64-libraries/winpthreads/*
Copyright: 2011-2016 mingw-w64 project
License: expat

Files: mingw-w64-libraries/winpthreads/include/pthread.h
       mingw-w64-libraries/winpthreads/include/pthread_compat.h
Copyright: 2010 Lockless Inc.
License: BSD-3-clause-Lockless
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
  * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
  * 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.
  * Neither the name of Lockless Inc. 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 COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AN 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 COPYRIGHT
 HOLDER 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.

Files: mingw-w64-libraries/winpthreads/src/clock.c
       mingw-w64-libraries/winpthreads/src/nanosleep.c
Copyright: public-domain
License: public-domain

Files: mingw-w64-libraries/winpthreads/src/libgcc/dll_math.c
Copyright: 1992, 1993 The Regents of the University of California
License: BSD-3-clause

Files: mingw-w64-libraries/winpthreads/tests_pthread/*
Copyright: 1998 John E. Bossom
	   1999, 2005 Pthreads-win32 contributors
License: LGPL-2+

Files: mingw-w64-libraries/winstorecompat/*
Copyright: 2013-2016, 2018 mingw-w64 project
License: expat

Files: mingw-w64-tools/gendef/*
Copyright: 2009-2016 mingw-w64 project
License: GPL-3+

Files: mingw-w64-tools/genidl/*
Copyright: 2009-2016 mingw-w64 project
License: GPL-3+

Files: mingw-w64-tools/genpeimg/*
Copyright: 2009-2016 mingw-w64 project
License: GPL-3+

Files: mingw-w64-tools/genstubdll/*
Copyright: 2014-2016 mingw-w64 project
License: GPL-3+

Files: mingw-w64-tools/widl/*
Copyright: 1996, 2000, 2002, 2010, 2017 Alexandre Julliard
           1998-2000 Bertho A. Stultiens
           1999 Corel Corporation
           1999 Patrick Stridvall
           1999 Rein Klazes
           2001-2003 Jon Griffiths
           2002, 2004 Ove Kaaven
           2004 Alastair Bridgewater
           2004 Mike McCormack
           2004, 2005 Huw Davies
           2005-2006 Eric Kohl
           2005-2008 Robert Shearman
           2006 Jacek Caban for CodeWeavers
           The Wine project
License: LGPL-2.1+

Files: mingw-w64-tools/widl/src/port/getopt*.c
Copyright: 1987-2002 Free Software Foundation, Inc.
License: LGPL-2.1+

Files: mingw-w64-tools/widl/src/port/port.c
Copyright: 1991, 1992, 1996, 1998 Free Software Foundation, Inc.
License: LGPL-2+

Files: debian/*
Copyright: 2009, 2010 Robert Millan
           2010-2018 Stephen Kitt <skitt@debian.org>
License: GPL-2+

Files: debian/pkg-config-crosswrapper
Copyright: 2004, 2005 Tollef Fog Heen <tfheen@err.no>
License: GPL-2+

Files: debian/*widl.1
Copyright: 1993-2013 The Wine project authors
License: LGPL-2.1+


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.
 4. 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: LGPL-2+
 On Debian systems the full text of the GNU Library General Public
 License Version 2 can be found in the
 `/usr/share/common-licenses/LGPL-2' file.

License: LGPL-2.1+
 On Debian systems the full text of the GNU Lesser General Public
 License Version 2.1 can be found in the
 `/usr/share/common-licenses/LGPL-2.1' file.

License: GPL-2+
 On Debian systems the full text of the GNU General Public
 License Version 2 can be found in the
 `/usr/share/common-licenses/GPL-2' file.

License: GPL-3+
 On Debian systems the full text of the GNU General Public
 License Version 3 can be found in the
 `/usr/share/common-licenses/GPL-3' file.

License: expat
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
 "Software"), to deal in the Software without restriction, including
 without limitation the rights to use, copy, modify, merge, publish,
 distribute, sublicense, and/or sell copies of the Software, and to
 permit persons to whom the Software is furnished to do so, subject to
 the following conditions:
 .
 The above copyright notice and this permission notice shall be
 included in all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.

License: BSD-2-clause-NetBSD
 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.
 .
 THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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: ISC
 Permission to use, copy, modify, and distribute this software for any
 purpose with or without fee is hereby granted, provided that the
 above copyright notice and this permission notice appear in all
 copies.
 .
 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
 WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
 WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
 AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
 DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
 PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
 TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 PERFORMANCE OF THIS SOFTWARE.

License: public-domain
 This file has no copyright assigned and is placed in the Public
 Domain.