cryptnode 0.1.1__1-py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cryptnode/__init__.py +4 -0
- cryptnode/__main__.py +4 -0
- cryptnode/bundles.py +101 -0
- cryptnode/certificates.py +98 -0
- cryptnode/cli.py +334 -0
- cryptnode/config.py +79 -0
- cryptnode/control.py +66 -0
- cryptnode/diagnostics.py +53 -0
- cryptnode/frp.py +18 -0
- cryptnode/host.py +202 -0
- cryptnode/lifecycle.py +307 -0
- cryptnode/logs.py +47 -0
- cryptnode/models.py +52 -0
- cryptnode/paths.py +135 -0
- cryptnode/processes.py +183 -0
- cryptnode/resources/__init__.py +2 -0
- cryptnode/resources/windows/crnode-core.exe +0 -0
- cryptnode/resources/windows/crnode-tls.exe +0 -0
- cryptnode/security.py +135 -0
- cryptnode/tls.py +49 -0
- cryptnode/ubuntu.py +144 -0
- cryptnode/windows.py +313 -0
- cryptnode-0.1.1.dist-info/METADATA +68 -0
- cryptnode-0.1.1.dist-info/RECORD +35 -0
- cryptnode-0.1.1.dist-info/WHEEL +5 -0
- cryptnode-0.1.1.dist-info/entry_points.txt +3 -0
- cryptnode-0.1.1.dist-info/licenses/BUILD-MATRIX.toml +29 -0
- cryptnode-0.1.1.dist-info/licenses/FRP-LICENSE +202 -0
- cryptnode-0.1.1.dist-info/licenses/GCC-RUNTIME-COPYRIGHT +1714 -0
- cryptnode-0.1.1.dist-info/licenses/OPENSSL-LICENSE +177 -0
- cryptnode-0.1.1.dist-info/licenses/SOURCE-AVAILABILITY.md +1 -0
- cryptnode-0.1.1.dist-info/licenses/STUNNEL-GPL-2.0.md +336 -0
- cryptnode-0.1.1.dist-info/licenses/STUNNEL-LICENSE +34 -0
- cryptnode-0.1.1.dist-info/licenses/STUNNEL-PATCH +44 -0
- cryptnode-0.1.1.dist-info/licenses/THIRD-PARTY.md +30 -0
|
@@ -0,0 +1,1714 @@
|
|
|
1
|
+
This work was packaged for Debian by:
|
|
2
|
+
|
|
3
|
+
Stephen Kitt <skitt@debian.org> on Tue, 07 Sep 2010 15:57:34 +0200
|
|
4
|
+
|
|
5
|
+
It is based on the gcc-9-source package maintained by the Debian GCC
|
|
6
|
+
Maintainers <debian-gcc@lists.debian.org>.
|
|
7
|
+
|
|
8
|
+
The following is reproduced from the copyright file in gcc-9-source:
|
|
9
|
+
|
|
10
|
+
This is the Debian GNU/Linux prepackaged version of the GNU compiler
|
|
11
|
+
collection, containing Ada, C, C++, D, Fortran 95, Go, Objective-C,
|
|
12
|
+
Objective-C++, and Modula-2 compilers, documentation, and support
|
|
13
|
+
libraries. In addition, Debian provides the gm2 compiler, either in
|
|
14
|
+
the same source package, or built from a separate same source package.
|
|
15
|
+
Packaging is done by the Debian GCC Maintainers
|
|
16
|
+
<debian-gcc@lists.debian.org>, with sources obtained from:
|
|
17
|
+
|
|
18
|
+
ftp://gcc.gnu.org/pub/gcc/releases/ (for full releases)
|
|
19
|
+
svn://gcc.gnu.org/svn/gcc/ (for prereleases)
|
|
20
|
+
ftp://sourceware.org/pub/newlib/ (for newlib)
|
|
21
|
+
git://git.savannah.gnu.org/gm2.git (for Modula-2)
|
|
22
|
+
|
|
23
|
+
The current gcc-9 source package is taken from the SVN gcc-9-branch.
|
|
24
|
+
|
|
25
|
+
Changes: See changelog.Debian.gz
|
|
26
|
+
|
|
27
|
+
Debian splits the GNU Compiler Collection into packages for each language,
|
|
28
|
+
library, and documentation as follows:
|
|
29
|
+
|
|
30
|
+
Language Compiler package Library package Documentation
|
|
31
|
+
---------------------------------------------------------------------------
|
|
32
|
+
Ada gnat-9 libgnat-9 gnat-9-doc
|
|
33
|
+
BRIG gccbrig-9 libhsail-rt0
|
|
34
|
+
C gcc-9 gcc-9-doc
|
|
35
|
+
C++ g++-9 libstdc++6 libstdc++6-9-doc
|
|
36
|
+
D gdc-9
|
|
37
|
+
Fortran 95 gfortran-9 libgfortran3 gfortran-9-doc
|
|
38
|
+
Go gccgo-9 libgo0
|
|
39
|
+
Objective C gobjc-9 libobjc2
|
|
40
|
+
Objective C++ gobjc++-9
|
|
41
|
+
Modula-2 gm2-9 libgm2
|
|
42
|
+
|
|
43
|
+
For some language run-time libraries, Debian provides source files,
|
|
44
|
+
development files, debugging symbols and libraries containing position-
|
|
45
|
+
independent code in separate packages:
|
|
46
|
+
|
|
47
|
+
Language Sources Development Debugging Position-Independent
|
|
48
|
+
------------------------------------------------------------------------------
|
|
49
|
+
C++ libstdc++6-9-dbg libstdc++6-9-pic
|
|
50
|
+
D libphobos-9-dev
|
|
51
|
+
|
|
52
|
+
Additional packages include:
|
|
53
|
+
|
|
54
|
+
All languages:
|
|
55
|
+
libgcc1, libgcc2, libgcc4 GCC intrinsics (platform-dependent)
|
|
56
|
+
gcc-9-base Base files common to all compilers
|
|
57
|
+
gcc-9-soft-float Software floating point (ARM only)
|
|
58
|
+
gcc-9-source The sources with patches
|
|
59
|
+
|
|
60
|
+
Ada:
|
|
61
|
+
libgnatvsn-dev, libgnatvsn9 GNAT version library
|
|
62
|
+
|
|
63
|
+
C:
|
|
64
|
+
cpp-9, cpp-9-doc GNU C Preprocessor
|
|
65
|
+
libssp0-dev, libssp0 GCC stack smashing protection library
|
|
66
|
+
libquadmath0 Math routines for the __float128 type
|
|
67
|
+
fixincludes Fix non-ANSI header files
|
|
68
|
+
|
|
69
|
+
C, C++ and Fortran 95:
|
|
70
|
+
libgomp1-dev, libgomp1 GCC OpenMP (GOMP) support library
|
|
71
|
+
libitm1-dev, libitm1 GNU Transactional Memory Library
|
|
72
|
+
|
|
73
|
+
Biarch support: On some 64-bit platforms which can also run 32-bit code,
|
|
74
|
+
Debian provides additional packages containing 32-bit versions of some
|
|
75
|
+
libraries. These packages have names beginning with 'lib32' instead of
|
|
76
|
+
'lib', for example lib32stdc++6. Similarly, on some 32-bit platforms which
|
|
77
|
+
can also run 64-bit code, Debian provides additional packages with names
|
|
78
|
+
beginning with 'lib64' instead of 'lib'. These packages contain 64-bit
|
|
79
|
+
versions of the libraries. (At this time, not all platforms and not all
|
|
80
|
+
libraries support biarch.) The license terms for these lib32 or lib64
|
|
81
|
+
packages are identical to the ones for the lib packages.
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
COPYRIGHT STATEMENTS AND LICENSING TERMS
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
GCC is Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
|
|
88
|
+
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
|
|
89
|
+
2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019
|
|
90
|
+
Free Software Foundation, Inc.
|
|
91
|
+
|
|
92
|
+
GCC is free software; you can redistribute it and/or modify it under
|
|
93
|
+
the terms of the GNU General Public License as published by the Free
|
|
94
|
+
Software Foundation; either version 3, or (at your option) any later
|
|
95
|
+
version.
|
|
96
|
+
|
|
97
|
+
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
98
|
+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
99
|
+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
100
|
+
for more details.
|
|
101
|
+
|
|
102
|
+
Files that have exception clauses are licensed under the terms of the
|
|
103
|
+
GNU General Public License; either version 3, or (at your option) any
|
|
104
|
+
later version.
|
|
105
|
+
|
|
106
|
+
On Debian GNU/Linux systems, the complete text of the GNU General
|
|
107
|
+
Public License is in `/usr/share/common-licenses/GPL', version 3 of this
|
|
108
|
+
license in `/usr/share/common-licenses/GPL-3'.
|
|
109
|
+
|
|
110
|
+
The following runtime libraries are licensed under the terms of the
|
|
111
|
+
GNU General Public License (v3 or later) with version 3.1 of the GCC
|
|
112
|
+
Runtime Library Exception (included in this file):
|
|
113
|
+
|
|
114
|
+
- libgcc (libgcc/, gcc/libgcc2.[ch], gcc/unwind*, gcc/gthr*,
|
|
115
|
+
gcc/coretypes.h, gcc/crtstuff.c, gcc/defaults.h, gcc/dwarf2.h,
|
|
116
|
+
gcc/emults.c, gcc/gbl-ctors.h, gcc/gcov-io.h, gcc/libgcov.c,
|
|
117
|
+
gcc/tsystem.h, gcc/typeclass.h).
|
|
118
|
+
- libatomic
|
|
119
|
+
- libdecnumber
|
|
120
|
+
- libgomp
|
|
121
|
+
- libitm
|
|
122
|
+
- libssp
|
|
123
|
+
- libstdc++-v3
|
|
124
|
+
- libobjc
|
|
125
|
+
- libgfortran
|
|
126
|
+
- The libgnat-9 Ada support library and libgnatvsn library.
|
|
127
|
+
- Various config files in gcc/config/ used in runtime libraries.
|
|
128
|
+
- libvtv
|
|
129
|
+
|
|
130
|
+
The libbacktrace library is licensed under the following terms:
|
|
131
|
+
|
|
132
|
+
Redistribution and use in source and binary forms, with or without
|
|
133
|
+
modification, are permitted provided that the following conditions are
|
|
134
|
+
met:
|
|
135
|
+
|
|
136
|
+
(1) Redistributions of source code must retain the above copyright
|
|
137
|
+
notice, this list of conditions and the following disclaimer.
|
|
138
|
+
|
|
139
|
+
(2) Redistributions in binary form must reproduce the above copyright
|
|
140
|
+
notice, this list of conditions and the following disclaimer in
|
|
141
|
+
the documentation and/or other materials provided with the
|
|
142
|
+
distribution.
|
|
143
|
+
|
|
144
|
+
(3) The name of the author may not be used to
|
|
145
|
+
endorse or promote products derived from this software without
|
|
146
|
+
specific prior written permission.
|
|
147
|
+
|
|
148
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
149
|
+
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
150
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
151
|
+
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
152
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
153
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
154
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
155
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
156
|
+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
157
|
+
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
158
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
The libsanitizer libraries (libasan, liblsan, libtsan, libubsan) are
|
|
162
|
+
licensed under the following terms:
|
|
163
|
+
|
|
164
|
+
Copyright (c) 2009-2014 by the LLVM contributors.
|
|
165
|
+
|
|
166
|
+
All rights reserved.
|
|
167
|
+
|
|
168
|
+
Developed by:
|
|
169
|
+
|
|
170
|
+
LLVM Team
|
|
171
|
+
|
|
172
|
+
University of Illinois at Urbana-Champaign
|
|
173
|
+
|
|
174
|
+
http://llvm.org
|
|
175
|
+
|
|
176
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
177
|
+
this software and associated documentation files (the "Software"), to deal with
|
|
178
|
+
the Software without restriction, including without limitation the rights to
|
|
179
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
180
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
181
|
+
so, subject to the following conditions:
|
|
182
|
+
|
|
183
|
+
* Redistributions of source code must retain the above copyright notice,
|
|
184
|
+
this list of conditions and the following disclaimers.
|
|
185
|
+
|
|
186
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
187
|
+
this list of conditions and the following disclaimers in the
|
|
188
|
+
documentation and/or other materials provided with the distribution.
|
|
189
|
+
|
|
190
|
+
* Neither the names of the LLVM Team, University of Illinois at
|
|
191
|
+
Urbana-Champaign, nor the names of its contributors may be used to
|
|
192
|
+
endorse or promote products derived from this Software without specific
|
|
193
|
+
prior written permission.
|
|
194
|
+
|
|
195
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
196
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
197
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
198
|
+
CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
199
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
200
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
|
|
201
|
+
SOFTWARE.
|
|
202
|
+
|
|
203
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
204
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
205
|
+
in the Software without restriction, including without limitation the rights
|
|
206
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
207
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
208
|
+
furnished to do so, subject to the following conditions:
|
|
209
|
+
|
|
210
|
+
The above copyright notice and this permission notice shall be included in
|
|
211
|
+
all copies or substantial portions of the Software.
|
|
212
|
+
|
|
213
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
214
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
215
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
216
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
217
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
218
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
219
|
+
THE SOFTWARE.
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
The libffi library is licensed under the following terms:
|
|
223
|
+
|
|
224
|
+
libffi - Copyright (c) 1996-2003 Red Hat, Inc.
|
|
225
|
+
|
|
226
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
227
|
+
a copy of this software and associated documentation files (the
|
|
228
|
+
``Software''), to deal in the Software without restriction, including
|
|
229
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
230
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
231
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
232
|
+
the following conditions:
|
|
233
|
+
|
|
234
|
+
The above copyright notice and this permission notice shall be included
|
|
235
|
+
in all copies or substantial portions of the Software.
|
|
236
|
+
|
|
237
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
238
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
239
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
240
|
+
IN NO EVENT SHALL CYGNUS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
241
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
242
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
243
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
The documentation is licensed under the GNU Free Documentation License (v1.2).
|
|
247
|
+
On Debian GNU/Linux systems, the complete text of this license is in
|
|
248
|
+
`/usr/share/common-licenses/GFDL-1.2'.
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
GCC RUNTIME LIBRARY EXCEPTION
|
|
252
|
+
|
|
253
|
+
Version 3.1, 31 March 2009
|
|
254
|
+
|
|
255
|
+
Copyright (C) 2009 Free Software Foundation, Inc. <http://fsf.org/>
|
|
256
|
+
|
|
257
|
+
Everyone is permitted to copy and distribute verbatim copies of this
|
|
258
|
+
license document, but changing it is not allowed.
|
|
259
|
+
|
|
260
|
+
This GCC Runtime Library Exception ("Exception") is an additional
|
|
261
|
+
permission under section 7 of the GNU General Public License, version
|
|
262
|
+
3 ("GPLv3"). It applies to a given file (the "Runtime Library") that
|
|
263
|
+
bears a notice placed by the copyright holder of the file stating that
|
|
264
|
+
the file is governed by GPLv3 along with this Exception.
|
|
265
|
+
|
|
266
|
+
When you use GCC to compile a program, GCC may combine portions of
|
|
267
|
+
certain GCC header files and runtime libraries with the compiled
|
|
268
|
+
program. The purpose of this Exception is to allow compilation of
|
|
269
|
+
non-GPL (including proprietary) programs to use, in this way, the
|
|
270
|
+
header files and runtime libraries covered by this Exception.
|
|
271
|
+
|
|
272
|
+
0. Definitions.
|
|
273
|
+
|
|
274
|
+
A file is an "Independent Module" if it either requires the Runtime
|
|
275
|
+
Library for execution after a Compilation Process, or makes use of an
|
|
276
|
+
interface provided by the Runtime Library, but is not otherwise based
|
|
277
|
+
on the Runtime Library.
|
|
278
|
+
|
|
279
|
+
"GCC" means a version of the GNU Compiler Collection, with or without
|
|
280
|
+
modifications, governed by version 3 (or a specified later version) of
|
|
281
|
+
the GNU General Public License (GPL) with the option of using any
|
|
282
|
+
subsequent versions published by the FSF.
|
|
283
|
+
|
|
284
|
+
"GPL-compatible Software" is software whose conditions of propagation,
|
|
285
|
+
modification and use would permit combination with GCC in accord with
|
|
286
|
+
the license of GCC.
|
|
287
|
+
|
|
288
|
+
"Target Code" refers to output from any compiler for a real or virtual
|
|
289
|
+
target processor architecture, in executable form or suitable for
|
|
290
|
+
input to an assembler, loader, linker and/or execution
|
|
291
|
+
phase. Notwithstanding that, Target Code does not include data in any
|
|
292
|
+
format that is used as a compiler intermediate representation, or used
|
|
293
|
+
for producing a compiler intermediate representation.
|
|
294
|
+
|
|
295
|
+
The "Compilation Process" transforms code entirely represented in
|
|
296
|
+
non-intermediate languages designed for human-written code, and/or in
|
|
297
|
+
Java Virtual Machine byte code, into Target Code. Thus, for example,
|
|
298
|
+
use of source code generators and preprocessors need not be considered
|
|
299
|
+
part of the Compilation Process, since the Compilation Process can be
|
|
300
|
+
understood as starting with the output of the generators or
|
|
301
|
+
preprocessors.
|
|
302
|
+
|
|
303
|
+
A Compilation Process is "Eligible" if it is done using GCC, alone or
|
|
304
|
+
with other GPL-compatible software, or if it is done without using any
|
|
305
|
+
work based on GCC. For example, using non-GPL-compatible Software to
|
|
306
|
+
optimize any GCC intermediate representations would not qualify as an
|
|
307
|
+
Eligible Compilation Process.
|
|
308
|
+
|
|
309
|
+
1. Grant of Additional Permission.
|
|
310
|
+
|
|
311
|
+
You have permission to propagate a work of Target Code formed by
|
|
312
|
+
combining the Runtime Library with Independent Modules, even if such
|
|
313
|
+
propagation would otherwise violate the terms of GPLv3, provided that
|
|
314
|
+
all Target Code was generated by Eligible Compilation Processes. You
|
|
315
|
+
may then convey such a combination under terms of your choice,
|
|
316
|
+
consistent with the licensing of the Independent Modules.
|
|
317
|
+
|
|
318
|
+
2. No Weakening of GCC Copyleft.
|
|
319
|
+
|
|
320
|
+
The availability of this Exception does not imply any general
|
|
321
|
+
presumption that third-party software is unaffected by the copyleft
|
|
322
|
+
requirements of the license of GCC.
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
libquadmath/*.[hc]:
|
|
326
|
+
|
|
327
|
+
Copyright (C) 2010 Free Software Foundation, Inc.
|
|
328
|
+
Written by Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
|
329
|
+
Written by Tobias Burnus <burnus@net-b.de>
|
|
330
|
+
|
|
331
|
+
This file is part of the libiberty library.
|
|
332
|
+
Libiberty is free software; you can redistribute it and/or
|
|
333
|
+
modify it under the terms of the GNU Library General Public
|
|
334
|
+
License as published by the Free Software Foundation; either
|
|
335
|
+
version 2 of the License, or (at your option) any later version.
|
|
336
|
+
|
|
337
|
+
Libiberty is distributed in the hope that it will be useful,
|
|
338
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
339
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
340
|
+
Library General Public License for more details.
|
|
341
|
+
|
|
342
|
+
libquadmath/math:
|
|
343
|
+
|
|
344
|
+
atanq.c, expm1q.c, j0q.c, j1q.c, log1pq.c, logq.c:
|
|
345
|
+
Copyright 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
|
|
346
|
+
|
|
347
|
+
This library is free software; you can redistribute it and/or
|
|
348
|
+
modify it under the terms of the GNU Lesser General Public
|
|
349
|
+
License as published by the Free Software Foundation; either
|
|
350
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
351
|
+
|
|
352
|
+
This library is distributed in the hope that it will be useful,
|
|
353
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
354
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
355
|
+
Lesser General Public License for more details.
|
|
356
|
+
|
|
357
|
+
coshq.c, erfq.c, jnq.c, lgammaq.c, powq.c, roundq.c:
|
|
358
|
+
Changes for 128-bit __float128 are
|
|
359
|
+
Copyright (C) 2001 Stephen L. Moshier <moshier@na-net.ornl.gov>
|
|
360
|
+
and are incorporated herein by permission of the author. The author
|
|
361
|
+
reserves the right to distribute this material elsewhere under different
|
|
362
|
+
copying permissions. These modifications are distributed here under
|
|
363
|
+
the following terms:
|
|
364
|
+
|
|
365
|
+
This library is free software; you can redistribute it and/or
|
|
366
|
+
modify it under the terms of the GNU Lesser General Public
|
|
367
|
+
License as published by the Free Software Foundation; either
|
|
368
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
369
|
+
|
|
370
|
+
This library is distributed in the hope that it will be useful,
|
|
371
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
372
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
373
|
+
Lesser General Public License for more details.
|
|
374
|
+
|
|
375
|
+
ldexpq.c:
|
|
376
|
+
* Conversion to long double by Ulrich Drepper,
|
|
377
|
+
* Cygnus Support, drepper@cygnus.com.
|
|
378
|
+
|
|
379
|
+
cosq_kernel.c, expq.c, sincos_table.c, sincosq.c, sincosq_kernel.c,
|
|
380
|
+
sinq_kernel.c, truncq.c:
|
|
381
|
+
Copyright (C) 1997, 1999 Free Software Foundation, Inc.
|
|
382
|
+
|
|
383
|
+
The GNU C Library is free software; you can redistribute it and/or
|
|
384
|
+
modify it under the terms of the GNU Lesser General Public
|
|
385
|
+
License as published by the Free Software Foundation; either
|
|
386
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
387
|
+
|
|
388
|
+
The GNU C Library is distributed in the hope that it will be useful,
|
|
389
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
390
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
391
|
+
Lesser General Public License for more details.
|
|
392
|
+
|
|
393
|
+
isinfq.c:
|
|
394
|
+
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
395
|
+
* Change for long double by Jakub Jelinek <jj@ultra.linux.cz>
|
|
396
|
+
* Public domain.
|
|
397
|
+
|
|
398
|
+
llroundq.c, lroundq.c, tgammaq.c:
|
|
399
|
+
Copyright (C) 1997, 1999, 2002, 2004 Free Software Foundation, Inc.
|
|
400
|
+
This file is part of the GNU C Library.
|
|
401
|
+
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997 and
|
|
402
|
+
Jakub Jelinek <jj@ultra.linux.cz>, 1999.
|
|
403
|
+
|
|
404
|
+
The GNU C Library is free software; you can redistribute it and/or
|
|
405
|
+
modify it under the terms of the GNU Lesser General Public
|
|
406
|
+
License as published by the Free Software Foundation; either
|
|
407
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
408
|
+
|
|
409
|
+
The GNU C Library is distributed in the hope that it will be useful,
|
|
410
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
411
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
412
|
+
Lesser General Public License for more details.
|
|
413
|
+
|
|
414
|
+
log10q.c:
|
|
415
|
+
Cephes Math Library Release 2.2: January, 1991
|
|
416
|
+
Copyright 1984, 1991 by Stephen L. Moshier
|
|
417
|
+
Adapted for glibc November, 2001
|
|
418
|
+
|
|
419
|
+
This library is free software; you can redistribute it and/or
|
|
420
|
+
modify it under the terms of the GNU Lesser General Public
|
|
421
|
+
License as published by the Free Software Foundation; either
|
|
422
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
423
|
+
|
|
424
|
+
This library is distributed in the hope that it will be useful,
|
|
425
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
426
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
427
|
+
Lesser General Public License for more details.
|
|
428
|
+
|
|
429
|
+
remaining files:
|
|
430
|
+
|
|
431
|
+
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
432
|
+
*
|
|
433
|
+
* Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
434
|
+
* Permission to use, copy, modify, and distribute this
|
|
435
|
+
* software is freely granted, provided that this notice
|
|
436
|
+
* is preserved.
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
gcc/go/gofrontend, libgo:
|
|
440
|
+
|
|
441
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
|
442
|
+
|
|
443
|
+
Redistribution and use in source and binary forms, with or without
|
|
444
|
+
modification, are permitted provided that the following conditions are
|
|
445
|
+
met:
|
|
446
|
+
|
|
447
|
+
* Redistributions of source code must retain the above copyright
|
|
448
|
+
notice, this list of conditions and the following disclaimer.
|
|
449
|
+
* Redistributions in binary form must reproduce the above
|
|
450
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
451
|
+
in the documentation and/or other materials provided with the
|
|
452
|
+
distribution.
|
|
453
|
+
* Neither the name of Google Inc. nor the names of its
|
|
454
|
+
contributors may be used to endorse or promote products derived from
|
|
455
|
+
this software without specific prior written permission.
|
|
456
|
+
|
|
457
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
458
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
459
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
460
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
461
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
462
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
463
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
464
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
465
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
466
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
467
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
D:
|
|
471
|
+
gdc-9 GNU D Compiler
|
|
472
|
+
libphobos-9-dev D standard runtime library
|
|
473
|
+
|
|
474
|
+
The D source package is made up of the following components.
|
|
475
|
+
|
|
476
|
+
The D front-end for GCC:
|
|
477
|
+
- d/*
|
|
478
|
+
|
|
479
|
+
Copyright (C) 2004-2007 David Friedman
|
|
480
|
+
Modified by Vincenzo Ampolo, Michael Parrot, Iain Buclaw, (C) 2009, 2010
|
|
481
|
+
|
|
482
|
+
This program is free software; you can redistribute it and/or modify
|
|
483
|
+
it under the terms of the GNU General Public License as published by
|
|
484
|
+
the Free Software Foundation; either version 2 of the License, or
|
|
485
|
+
(at your option) any later version.
|
|
486
|
+
|
|
487
|
+
On Debian GNU/Linux systems, the complete text of the GNU General
|
|
488
|
+
Public License is in `/usr/share/common-licenses/GPL', version 2 of this
|
|
489
|
+
license in `/usr/share/common-licenses/GPL-2'.
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
The DMD Compiler implementation of the D programming language:
|
|
493
|
+
- d/dmd/*
|
|
494
|
+
|
|
495
|
+
Copyright (c) 1999-2010 by Digital Mars
|
|
496
|
+
All Rights Reserved
|
|
497
|
+
written by Walter Bright
|
|
498
|
+
http://www.digitalmars.com
|
|
499
|
+
License for redistribution is by either the Artistic License or
|
|
500
|
+
the GNU General Public License (v1).
|
|
501
|
+
|
|
502
|
+
On Debian GNU/Linux systems, the complete text of the GNU General
|
|
503
|
+
Public License is in `/usr/share/common-licenses/GPL', the Artistic
|
|
504
|
+
license in `/usr/share/common-licenses/Artistic'.
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
The Zlib data compression library:
|
|
508
|
+
- d/phobos/etc/c/zlib/*
|
|
509
|
+
|
|
510
|
+
(C) 1995-2004 Jean-loup Gailly and Mark Adler
|
|
511
|
+
|
|
512
|
+
This software is provided 'as-is', without any express or implied
|
|
513
|
+
warranty. In no event will the authors be held liable for any damages
|
|
514
|
+
arising from the use of this software.
|
|
515
|
+
|
|
516
|
+
Permission is granted to anyone to use this software for any purpose,
|
|
517
|
+
including commercial applications, and to alter it and redistribute it
|
|
518
|
+
freely, subject to the following restrictions:
|
|
519
|
+
|
|
520
|
+
1. The origin of this software must not be misrepresented; you must not
|
|
521
|
+
claim that you wrote the original software. If you use this software
|
|
522
|
+
in a product, an acknowledgment in the product documentation would be
|
|
523
|
+
appreciated but is not required.
|
|
524
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
|
525
|
+
misrepresented as being the original software.
|
|
526
|
+
3. This notice may not be removed or altered from any source distribution.
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
The Phobos standard runtime library:
|
|
530
|
+
- d/phobos/*
|
|
531
|
+
|
|
532
|
+
Unless otherwise marked within the file, each file in the source
|
|
533
|
+
is under the following licenses:
|
|
534
|
+
|
|
535
|
+
Copyright (C) 2004-2005 by Digital Mars, www.digitalmars.com
|
|
536
|
+
Written by Walter Bright
|
|
537
|
+
|
|
538
|
+
This software is provided 'as-is', without any express or implied
|
|
539
|
+
warranty. In no event will the authors be held liable for any damages
|
|
540
|
+
arising from the use of this software.
|
|
541
|
+
|
|
542
|
+
Permission is granted to anyone to use this software for any purpose,
|
|
543
|
+
including commercial applications, and to alter it and redistribute it
|
|
544
|
+
freely, in both source and binary form, subject to the following
|
|
545
|
+
restrictions:
|
|
546
|
+
|
|
547
|
+
o The origin of this software must not be misrepresented; you must not
|
|
548
|
+
claim that you wrote the original software. If you use this software
|
|
549
|
+
in a product, an acknowledgment in the product documentation would be
|
|
550
|
+
appreciated but is not required.
|
|
551
|
+
o Altered source versions must be plainly marked as such, and must not
|
|
552
|
+
be misrepresented as being the original software.
|
|
553
|
+
o This notice may not be removed or altered from any source
|
|
554
|
+
distribution.
|
|
555
|
+
|
|
556
|
+
By plainly marking modifications, something along the lines of adding to each
|
|
557
|
+
file that has been changed a "Modified by Foo Bar" line
|
|
558
|
+
underneath the "Written by" line would be adequate.
|
|
559
|
+
|
|
560
|
+
The libhsail-rt library is licensed under the following terms:
|
|
561
|
+
|
|
562
|
+
Copyright (C) 2015-2017 Free Software Foundation, Inc.
|
|
563
|
+
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
|
|
564
|
+
for General Processor Tech.
|
|
565
|
+
|
|
566
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
|
567
|
+
copy of this software and associated documentation files
|
|
568
|
+
(the "Software"), to deal in the Software without restriction, including
|
|
569
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
570
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
571
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
572
|
+
the following conditions:
|
|
573
|
+
|
|
574
|
+
The above copyright notice and this permission notice shall be included
|
|
575
|
+
in all copies or substantial portions of the Software.
|
|
576
|
+
|
|
577
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
578
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
579
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
580
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
581
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
582
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
583
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
584
|
+
|
|
585
|
+
libhsail-rt/rt/fp16.c is licensed under the following terms:
|
|
586
|
+
|
|
587
|
+
Copyright (C) 2008-2017 Free Software Foundation, Inc.
|
|
588
|
+
Contributed by CodeSourcery.
|
|
589
|
+
|
|
590
|
+
This file is free software; you can redistribute it and/or modify it
|
|
591
|
+
under the terms of the GNU General Public License as published by the
|
|
592
|
+
Free Software Foundation; either version 3, or (at your option) any
|
|
593
|
+
later version.
|
|
594
|
+
|
|
595
|
+
This file is distributed in the hope that it will be useful, but
|
|
596
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
597
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
598
|
+
General Public License for more details.
|
|
599
|
+
|
|
600
|
+
Under Section 7 of GPL version 3, you are granted additional
|
|
601
|
+
permissions described in the GCC Runtime Library Exception, version
|
|
602
|
+
3.1, as published by the Free Software Foundation.
|
|
603
|
+
|
|
604
|
+
You should have received a copy of the GNU General Public License and
|
|
605
|
+
a copy of the GCC Runtime Library Exception along with this program;
|
|
606
|
+
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
607
|
+
<http://www.gnu.org/licenses/>.
|
|
608
|
+
|
|
609
|
+
gcc/gm2:
|
|
610
|
+
Copyright (C) 2007-2019 Free Software Foundation, Inc.
|
|
611
|
+
Contributed by Gaius Mulley <gaius@glam.ac.uk>.
|
|
612
|
+
|
|
613
|
+
This file is part of GNU Modula-2.
|
|
614
|
+
|
|
615
|
+
GNU Modula-2 is free software; you can redistribute it and/or modify
|
|
616
|
+
it under the terms of the GNU General Public License as published by
|
|
617
|
+
the Free Software Foundation; either version 3, or (at your option)
|
|
618
|
+
any later version.
|
|
619
|
+
|
|
620
|
+
GNU Modula-2 is distributed in the hope that it will be useful, but
|
|
621
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
622
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
623
|
+
General Public License for more details.
|
|
624
|
+
|
|
625
|
+
gcc/gm2/**/*.texi:
|
|
626
|
+
Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
|
|
627
|
+
2011, 2012, 2012, 2013 Free Software Foundation, Inc.
|
|
628
|
+
|
|
629
|
+
Permission is granted to copy, distribute and/or modify this document
|
|
630
|
+
under the terms of the GNU Free Documentation License, Version 1.3 or
|
|
631
|
+
any later version published by the Free Software Foundation; with no
|
|
632
|
+
Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
|
|
633
|
+
|
|
634
|
+
gcc/gm2/gm2-coroutines:
|
|
635
|
+
Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
|
636
|
+
Free Software Foundation, Inc.
|
|
637
|
+
|
|
638
|
+
This library is free software; you can redistribute it and/or
|
|
639
|
+
modify it under the terms of the GNU Lesser General Public
|
|
640
|
+
License as published by the Free Software Foundation; either
|
|
641
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
642
|
+
|
|
643
|
+
This library is distributed in the hope that it will be useful,
|
|
644
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
645
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
646
|
+
Lesser General Public License for more details.
|
|
647
|
+
|
|
648
|
+
gcc/gm2/ulm-lib-gm2:
|
|
649
|
+
Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
|
650
|
+
Free Software Foundation, Inc.
|
|
651
|
+
|
|
652
|
+
GNU Modula-2 is free software; you can redistribute it and/or modify it under
|
|
653
|
+
the terms of the GNU General Public License as published by the Free
|
|
654
|
+
Software Foundation; either version 3, or (at your option) any later
|
|
655
|
+
version.
|
|
656
|
+
|
|
657
|
+
This file was originally part of the University of Ulm library
|
|
658
|
+
|
|
659
|
+
Ulm's Modula-2 Library
|
|
660
|
+
Copyright (C) 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993,
|
|
661
|
+
1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
|
|
662
|
+
by University of Ulm, SAI, D-89069 Ulm, Germany
|
|
663
|
+
|
|
664
|
+
gcc/gm2/ulm-lib-gm2/std/M2RTS.mod:
|
|
665
|
+
gcc/gm2/ulm-lib-gm2/std/Storage.mod:
|
|
666
|
+
gcc/gm2/ulm-lib-gm2/std/RTExceptions.mod:
|
|
667
|
+
|
|
668
|
+
Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
|
669
|
+
|
|
670
|
+
This library is free software; you can redistribute it and/or
|
|
671
|
+
modify it under the terms of the GNU Lesser General Public
|
|
672
|
+
License as published by the Free Software Foundation; either
|
|
673
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
674
|
+
|
|
675
|
+
This library is distributed in the hope that it will be useful,
|
|
676
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
677
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
678
|
+
Lesser General Public License for more details.
|
|
679
|
+
|
|
680
|
+
gcc/gm2/gm2-libs:
|
|
681
|
+
Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
|
682
|
+
Free Software Foundation, Inc.
|
|
683
|
+
|
|
684
|
+
This library is free software; you can redistribute it and/or
|
|
685
|
+
modify it under the terms of the GNU Lesser General Public
|
|
686
|
+
License as published by the Free Software Foundation; either
|
|
687
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
688
|
+
|
|
689
|
+
This library is distributed in the hope that it will be useful,
|
|
690
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
691
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
692
|
+
Lesser General Public License for more details.
|
|
693
|
+
|
|
694
|
+
./gm2-libs/cbuiltin.def:
|
|
695
|
+
./gm2-libs/MathLib0.def:
|
|
696
|
+
./gm2-libs/SYSTEM.def:
|
|
697
|
+
./gm2-libs/sckt.def:
|
|
698
|
+
./gm2-libs/Indexing.def:
|
|
699
|
+
./gm2-libs/Builtins.mod:
|
|
700
|
+
./gm2-libs/SFIO.mod:
|
|
701
|
+
./gm2-libs/MathLib0.mod:
|
|
702
|
+
./gm2-libs/gdbif.mod:
|
|
703
|
+
./gm2-libs/M2EXCEPTION.mod:
|
|
704
|
+
./gm2-libs/SFIO.def:
|
|
705
|
+
./gm2-libs/StringConvert.mod:
|
|
706
|
+
./gm2-libs/StringConvert.def:
|
|
707
|
+
./gm2-libs/config-host.in:
|
|
708
|
+
./gm2-libs/Indexing.mod:
|
|
709
|
+
./gm2-libs/errno.def:
|
|
710
|
+
|
|
711
|
+
Copyright (C) 2001-2019 Free Software Foundation, Inc.
|
|
712
|
+
Contributed by Gaius Mulley <gaius.mulley@southwales.ac.uk>.
|
|
713
|
+
|
|
714
|
+
GNU Modula-2 is free software; you can redistribute it and/or modify
|
|
715
|
+
it under the terms of the GNU General Public License as published by
|
|
716
|
+
the Free Software Foundation; either version 3, or (at your option)
|
|
717
|
+
any later version.
|
|
718
|
+
|
|
719
|
+
GNU Modula-2 is distributed in the hope that it will be useful, but
|
|
720
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
721
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
722
|
+
General Public License for more details.
|
|
723
|
+
|
|
724
|
+
./gm2-libs/M2EXCEPTION.def:
|
|
725
|
+
Library module defined by the International Standard
|
|
726
|
+
Information technology - programming languages
|
|
727
|
+
BS ISO/IEC 10514-1:1996E Part 1: Modula-2, Base Language.
|
|
728
|
+
|
|
729
|
+
Copyright ISO/IEC (International Organization for Standardization
|
|
730
|
+
and International Electrotechnical Commission) 1996, 1997, 1998,
|
|
731
|
+
1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
|
732
|
+
|
|
733
|
+
gcc/gm2/gm2-libiberty/:
|
|
734
|
+
Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
|
735
|
+
Free Software Foundation, Inc.
|
|
736
|
+
|
|
737
|
+
GNU Modula-2 is free software; you can redistribute it and/or modify it under
|
|
738
|
+
the terms of the GNU General Public License as published by the Free
|
|
739
|
+
Software Foundation; either version 3, or (at your option) any later
|
|
740
|
+
version.
|
|
741
|
+
|
|
742
|
+
GNU Modula-2 is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
743
|
+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
744
|
+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
745
|
+
for more details.
|
|
746
|
+
|
|
747
|
+
gcc/gm2/gm2-libs-iso/:
|
|
748
|
+
This has a mix of licenses, both LGPL-2.1 and GPL-3.0, plus the apparently
|
|
749
|
+
unmodified definition modules from ISO/IEC.
|
|
750
|
+
|
|
751
|
+
gcc/gm2/gm2-libs-iso/*.def:
|
|
752
|
+
|
|
753
|
+
Library module defined by the International Standard
|
|
754
|
+
Information technology - programming languages
|
|
755
|
+
BS ISO/IEC 10514-1:1996E Part 1: Modula-2, Base Language.
|
|
756
|
+
|
|
757
|
+
Copyright ISO/IEC (International Organization for Standardization
|
|
758
|
+
and International Electrotechnical Commission) 1996, 1997, 1998,
|
|
759
|
+
1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
|
760
|
+
|
|
761
|
+
gcc/gm2/gm2-libs-iso/*.def:
|
|
762
|
+
|
|
763
|
+
Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
|
|
764
|
+
|
|
765
|
+
gcc/gm2/gm2-libs-iso/*.def:
|
|
766
|
+
This library is free software; you can redistribute it and/or
|
|
767
|
+
modify it under the terms of the GNU Lesser General Public
|
|
768
|
+
License as published by the Free Software Foundation; either
|
|
769
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
770
|
+
|
|
771
|
+
This library is distributed in the hope that it will be useful,
|
|
772
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
773
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
774
|
+
Lesser General Public License for more details.
|
|
775
|
+
|
|
776
|
+
gcc/gm2/gm2-libs-iso/*.mod:
|
|
777
|
+
|
|
778
|
+
Copyright (C) 2012 Free Software Foundation, Inc.
|
|
779
|
+
|
|
780
|
+
GNU Modula-2 is free software; you can redistribute it and/or modify it under
|
|
781
|
+
the terms of the GNU General Public License as published by the Free
|
|
782
|
+
Software Foundation; either version 3, or (at your option) any later
|
|
783
|
+
version.
|
|
784
|
+
|
|
785
|
+
GNU Modula-2 is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
786
|
+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
787
|
+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
788
|
+
for more details.
|
|
789
|
+
|
|
790
|
+
gcc/gm2/gm2-libs-iso/*.mod:
|
|
791
|
+
|
|
792
|
+
Copyright (C) 2009, 2010 Free Software Foundation, Inc.
|
|
793
|
+
|
|
794
|
+
This library is free software; you can redistribute it and/or
|
|
795
|
+
modify it under the terms of the GNU Lesser General Public
|
|
796
|
+
License as published by the Free Software Foundation; either
|
|
797
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
798
|
+
|
|
799
|
+
This library is distributed in the hope that it will be useful,
|
|
800
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
801
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
802
|
+
Lesser General Public License for more details.
|
|
803
|
+
|
|
804
|
+
gcc/gm2/gm2-libs-min/*:
|
|
805
|
+
Copyright (C) 2001-2019 Free Software Foundation, Inc.
|
|
806
|
+
mix of GPL-3.0 and LGPL-3.0
|
|
807
|
+
|
|
808
|
+
gcc/gm2/gm2-libs-pim/*:
|
|
809
|
+
Copyright (C) 2001-2019 Free Software Foundation, Inc.
|
|
810
|
+
mix of GPL-3.0 and LGPL-2.1/3
|
|
811
|
+
|
|
812
|
+
gcc/gm2/gm2-libs-ch/*:
|
|
813
|
+
Copyright (C) 2001-2019 Free Software Foundation, Inc.
|
|
814
|
+
mix of GPL-3.0 and LGPL-2.1/3
|
|
815
|
+
|
|
816
|
+
gcc/gm2/examples:
|
|
817
|
+
Copyright (C) 2005-2015 Free Software Foundation, Inc.
|
|
818
|
+
Mix of LGPL-2.1 and GPL-3.0.
|
|
819
|
+
|
|
820
|
+
gcc/gm2/images:
|
|
821
|
+
GPL-3+
|
|
822
|
+
|
|
823
|
+
gcc/gm2/el/gm2-mode.el:
|
|
824
|
+
;; Everyone is granted permission to copy, modify and redistribute
|
|
825
|
+
;; GNU Emacs, but only under the conditions described in the
|
|
826
|
+
;; GNU Emacs General Public License. A copy of this license is
|
|
827
|
+
;; supposed to have been given to you along with GNU Emacs so you
|
|
828
|
+
;; can know your rights and responsibilities. It should be in a
|
|
829
|
+
;; file named COPYING. Among other things, the copyright notice
|
|
830
|
+
;; and this notice must be preserved on all copies.
|
|
831
|
+
|
|
832
|
+
gcc/gm2/mc-boot/:
|
|
833
|
+
Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
|
834
|
+
Contributed by Gaius Mulley <gaius@glam.ac.uk>.
|
|
835
|
+
Mix of GPL-3 and LGPL-2.1.
|
|
836
|
+
|
|
837
|
+
gcc/testsuite/gm2/:
|
|
838
|
+
Copyright (C) 2001-2019 Free Software Foundation, Inc.
|
|
839
|
+
Mix of GPL-2+ and GPL-3+
|
|
840
|
+
|
|
841
|
+
libgm2:
|
|
842
|
+
|
|
843
|
+
libgm2/libiso/:
|
|
844
|
+
Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
|
|
845
|
+
|
|
846
|
+
This library is free software; you can redistribute it and/or
|
|
847
|
+
modify it under the terms of the GNU Lesser General Public
|
|
848
|
+
License as published by the Free Software Foundation; either
|
|
849
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
850
|
+
|
|
851
|
+
This library is distributed in the hope that it will be useful,
|
|
852
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
853
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
854
|
+
Lesser General Public License for more details.
|
|
855
|
+
|
|
856
|
+
libgm2/libpim/:
|
|
857
|
+
Copyright (C) 2005-2014 Free Software Foundation, Inc.
|
|
858
|
+
Mix of LGPL-2.1, LGPL-3 and GPL-3.
|
|
859
|
+
|
|
860
|
+
libgm2/liblog/:
|
|
861
|
+
Copyright (C) 2005-2018 Free Software Foundation, Inc.
|
|
862
|
+
Mix of LGPL-2.1 and LGPL-3.
|
|
863
|
+
|
|
864
|
+
libgm2/libpth/:
|
|
865
|
+
Copyright: (C) 1999-2006 Ralf S. Engelschall <rse@gnu.org>
|
|
866
|
+
License: LGPL-2.1+
|
|
867
|
+
This library is free software; you can redistribute it and/or
|
|
868
|
+
modify it under the terms of the GNU Library General Public
|
|
869
|
+
License as published by the Free Software Foundation; either
|
|
870
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
871
|
+
.
|
|
872
|
+
This library is distributed in the hope that it will be useful,
|
|
873
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
874
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
875
|
+
Library General Public License for more details.
|
|
876
|
+
|
|
877
|
+
libgm2/libulm/:
|
|
878
|
+
Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
|
879
|
+
Free Software Foundation, Inc.
|
|
880
|
+
|
|
881
|
+
GNU Modula-2 is free software; you can redistribute it and/or modify it under
|
|
882
|
+
the terms of the GNU General Public License as published by the Free
|
|
883
|
+
Software Foundation; either version 3, or (at your option) any later
|
|
884
|
+
version.
|
|
885
|
+
|
|
886
|
+
GNU Modula-2 is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
887
|
+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
888
|
+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
889
|
+
for more details.
|
|
890
|
+
|
|
891
|
+
libgm2/libcor/:
|
|
892
|
+
Copyright (C) 2005-2019 Free Software Foundation, Inc.
|
|
893
|
+
Contributed by Gaius Mulley <gaius@glam.ac.uk>.
|
|
894
|
+
|
|
895
|
+
GNU Modula-2 is free software; you can redistribute it and/or modify
|
|
896
|
+
it under the terms of the GNU General Public License as published by
|
|
897
|
+
the Free Software Foundation; either version 3, or (at your option)
|
|
898
|
+
any later version.
|
|
899
|
+
|
|
900
|
+
GNU Modula-2 is distributed in the hope that it will be useful, but
|
|
901
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
902
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
903
|
+
General Public License for more details.
|
|
904
|
+
|
|
905
|
+
libgm2/libmin/:
|
|
906
|
+
Copyright (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
|
|
907
|
+
|
|
908
|
+
GNU Modula-2 is free software; you can redistribute it and/or modify it under
|
|
909
|
+
the terms of the GNU General Public License as published by the Free
|
|
910
|
+
Software Foundation; either version 3, or (at your option) any later
|
|
911
|
+
version.
|
|
912
|
+
|
|
913
|
+
GNU Modula-2 is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
914
|
+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
915
|
+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
916
|
+
for more details.
|
|
917
|
+
|
|
918
|
+
libgm2/p2c/:
|
|
919
|
+
Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
|
920
|
+
Free Software Foundation, Inc.
|
|
921
|
+
|
|
922
|
+
GNU Modula-2 is free software; you can redistribute it and/or modify
|
|
923
|
+
it under the terms of the GNU General Public License as published by
|
|
924
|
+
the Free Software Foundation; either version 3, or (at your option)
|
|
925
|
+
any later version.
|
|
926
|
+
|
|
927
|
+
GNU Modula-2 is distributed in the hope that it will be useful,
|
|
928
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
929
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
930
|
+
GNU General Public License for more details.
|
|
931
|
+
|
|
932
|
+
newlib-X.Y.Z/:
|
|
933
|
+
|
|
934
|
+
Upstream Authors:
|
|
935
|
+
newlib@sources.redhat.com
|
|
936
|
+
Jeff Johnston <jjohnstn@redhat.com>
|
|
937
|
+
Tom Fitzsimmons <fitzsim@redhat.com>
|
|
938
|
+
|
|
939
|
+
The newlib subdirectory is a collection of software from several sources.
|
|
940
|
+
Each file may have its own copyright/license that is embedded in the source
|
|
941
|
+
file.
|
|
942
|
+
|
|
943
|
+
This list documents those licenses which are more restrictive than
|
|
944
|
+
a BSD-like license or require the copyright notice
|
|
945
|
+
to be duplicated in documentation and/or other materials associated with
|
|
946
|
+
the distribution. Certain licenses documented here only apply to
|
|
947
|
+
specific targets. Certain clauses only apply if you are building the
|
|
948
|
+
code as part of your binary.
|
|
949
|
+
|
|
950
|
+
Note that this list may omit certain licenses that
|
|
951
|
+
only pertain to the copying/modifying of the individual source code.
|
|
952
|
+
If you are distributing the source code, then you do not need to
|
|
953
|
+
worry about these omitted licenses, so long as you do not modify the
|
|
954
|
+
copyright information already in place.
|
|
955
|
+
|
|
956
|
+
Parts of this work are licensed under the terms of the GNU General
|
|
957
|
+
Public License. On Debian systems, the complete text of this license
|
|
958
|
+
can be found in /usr/share/common-licenses/GPL.
|
|
959
|
+
|
|
960
|
+
Parts of this work are licensed under the terms of the GNU Library
|
|
961
|
+
General Public License. On Debian systems, the complete text of this
|
|
962
|
+
license be found in /usr/share/common-licenses/LGPL.
|
|
963
|
+
|
|
964
|
+
(1) University of California, Berkeley
|
|
965
|
+
|
|
966
|
+
[1a]
|
|
967
|
+
|
|
968
|
+
Copyright (c) 1990 The Regents of the University of California.
|
|
969
|
+
All rights reserved.
|
|
970
|
+
|
|
971
|
+
Redistribution and use in source and binary forms are permitted
|
|
972
|
+
provided that the above copyright notice and this paragraph are
|
|
973
|
+
duplicated in all such forms and that any documentation,
|
|
974
|
+
and other materials related to such distribution and use
|
|
975
|
+
acknowledge that the software was developed
|
|
976
|
+
by the University of California, Berkeley. The name of the
|
|
977
|
+
University may not be used to endorse or promote products derived
|
|
978
|
+
from this software without specific prior written permission.
|
|
979
|
+
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
980
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
981
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
982
|
+
|
|
983
|
+
[1b]
|
|
984
|
+
|
|
985
|
+
Copyright (c) 1990 The Regents of the University of California.
|
|
986
|
+
All rights reserved.
|
|
987
|
+
|
|
988
|
+
Redistribution and use in source and binary forms are permitted
|
|
989
|
+
provided that the above copyright notice and this paragraph are
|
|
990
|
+
duplicated in all such forms and that any documentation,
|
|
991
|
+
advertising materials, and other materials related to such
|
|
992
|
+
distribution and use acknowledge that the software was developed
|
|
993
|
+
by the University of California, Berkeley. The name of the
|
|
994
|
+
University may not be used to endorse or promote products derived
|
|
995
|
+
from this software without specific prior written permission.
|
|
996
|
+
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
997
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
998
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
999
|
+
|
|
1000
|
+
[1c]
|
|
1001
|
+
|
|
1002
|
+
Copyright (c) 1981, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
|
|
1003
|
+
The Regents of the University of California.
|
|
1004
|
+
All rights reserved.
|
|
1005
|
+
|
|
1006
|
+
Redistribution and use in source and binary forms, with or without
|
|
1007
|
+
modification, are permitted provided that the following conditions
|
|
1008
|
+
are met:
|
|
1009
|
+
1. Redistributions of source code must retain the above copyright
|
|
1010
|
+
notice, this list of conditions and the following disclaimer.
|
|
1011
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1012
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1013
|
+
documentation and/or other materials provided with the distribution.
|
|
1014
|
+
3. All advertising materials mentioning features or use of this software
|
|
1015
|
+
must display the following acknowledgement:
|
|
1016
|
+
This product includes software developed by the University of
|
|
1017
|
+
California, Berkeley and its contributors.
|
|
1018
|
+
4. Neither the name of the University nor the names of its contributors
|
|
1019
|
+
may be used to endorse or promote products derived from this software
|
|
1020
|
+
without specific prior written permission.
|
|
1021
|
+
|
|
1022
|
+
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
1023
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1024
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
1025
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
1026
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1027
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
1028
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
1029
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
1030
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
1031
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
1032
|
+
SUCH DAMAGE.
|
|
1033
|
+
|
|
1034
|
+
[1d]
|
|
1035
|
+
|
|
1036
|
+
Copyright (c) 1988, 1990, 1993 Regents of the University of California.
|
|
1037
|
+
All rights reserved.
|
|
1038
|
+
|
|
1039
|
+
Redistribution and use in source and binary forms, with or without
|
|
1040
|
+
modification, are permitted provided that the following conditions
|
|
1041
|
+
are met:
|
|
1042
|
+
1. Redistributions of source code must retain the above copyright
|
|
1043
|
+
notice, this list of conditions and the following disclaimer.
|
|
1044
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1045
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1046
|
+
documentation and/or other materials provided with the distribution.
|
|
1047
|
+
3. Neither the name of the University nor the names of its contributors
|
|
1048
|
+
may be used to endorse or promote products derived from this software
|
|
1049
|
+
without specific prior written permission.
|
|
1050
|
+
|
|
1051
|
+
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
1052
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1053
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
1054
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
1055
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1056
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
1057
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
1058
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
1059
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
1060
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
1061
|
+
SUCH DAMAGE.
|
|
1062
|
+
|
|
1063
|
+
[1e]
|
|
1064
|
+
|
|
1065
|
+
Copyright (c) 1982, 1986, 1989, 1991, 1993, 1994
|
|
1066
|
+
The Regents of the University of California. All rights reserved.
|
|
1067
|
+
(c) UNIX System Laboratories, Inc.
|
|
1068
|
+
All or some portions of this file are derived from material licensed
|
|
1069
|
+
to the University of California by American Telephone and Telegraph
|
|
1070
|
+
Co. or Unix System Laboratories, Inc. and are reproduced herein with
|
|
1071
|
+
the permission of UNIX System Laboratories, Inc.
|
|
1072
|
+
|
|
1073
|
+
Redistribution and use in source and binary forms, with or without
|
|
1074
|
+
modification, are permitted provided that the following conditions
|
|
1075
|
+
are met:
|
|
1076
|
+
1. Redistributions of source code must retain the above copyright
|
|
1077
|
+
notice, this list of conditions and the following disclaimer.
|
|
1078
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1079
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1080
|
+
documentation and/or other materials provided with the distribution.
|
|
1081
|
+
3. All advertising materials mentioning features or use of this software
|
|
1082
|
+
must display the following acknowledgement:
|
|
1083
|
+
This product includes software developed by the University of
|
|
1084
|
+
California, Berkeley and its contributors.
|
|
1085
|
+
4. Neither the name of the University nor the names of its contributors
|
|
1086
|
+
may be used to endorse or promote products derived from this software
|
|
1087
|
+
without specific prior written permission.
|
|
1088
|
+
|
|
1089
|
+
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
1090
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1091
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
1092
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
1093
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1094
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
1095
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
1096
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
1097
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
1098
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
1099
|
+
SUCH DAMAGE.
|
|
1100
|
+
|
|
1101
|
+
[1f]
|
|
1102
|
+
|
|
1103
|
+
Copyright (c) 1987, 1988, 2000 Regents of the University of California.
|
|
1104
|
+
All rights reserved.
|
|
1105
|
+
|
|
1106
|
+
Redistribution and use in source and binary forms are permitted
|
|
1107
|
+
provided that: (1) source distributions retain this entire copyright
|
|
1108
|
+
notice and comment, and (2) distributions including binaries display
|
|
1109
|
+
the following acknowledgement: ``This product includes software
|
|
1110
|
+
developed by the University of California, Berkeley and its contributors''
|
|
1111
|
+
in the documentation or other materials provided with the distribution
|
|
1112
|
+
and in all advertising materials mentioning features or use of this
|
|
1113
|
+
software. Neither the name of the University nor the names of its
|
|
1114
|
+
contributors may be used to endorse or promote products derived
|
|
1115
|
+
from this software without specific prior written permission.
|
|
1116
|
+
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
1117
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
1118
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
1119
|
+
|
|
1120
|
+
-------------------------------------------------------------
|
|
1121
|
+
Please note that in some of the above alternate licenses, there is a
|
|
1122
|
+
statement regarding that acknowledgement must be made in any
|
|
1123
|
+
advertising materials for products using the code. This restriction
|
|
1124
|
+
no longer applies due to the following license change:
|
|
1125
|
+
|
|
1126
|
+
ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
|
|
1127
|
+
|
|
1128
|
+
In some cases the defunct clause has been removed in modified newlib code and
|
|
1129
|
+
in some cases, the clause has been left as-is.
|
|
1130
|
+
-------------------------------------------------------------
|
|
1131
|
+
|
|
1132
|
+
(2) Cygwin (cygwin targets only)
|
|
1133
|
+
|
|
1134
|
+
Copyright 2001 Red Hat, Inc.
|
|
1135
|
+
|
|
1136
|
+
This software is a copyrighted work licensed under the terms of the
|
|
1137
|
+
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
1138
|
+
details.
|
|
1139
|
+
|
|
1140
|
+
(3) David M. Gay at AT&T
|
|
1141
|
+
|
|
1142
|
+
The author of this software is David M. Gay.
|
|
1143
|
+
|
|
1144
|
+
Copyright (c) 1991 by AT&T.
|
|
1145
|
+
|
|
1146
|
+
Permission to use, copy, modify, and distribute this software for any
|
|
1147
|
+
purpose without fee is hereby granted, provided that this entire notice
|
|
1148
|
+
is included in all copies of any software which is or includes a copy
|
|
1149
|
+
or modification of this software and in all copies of the supporting
|
|
1150
|
+
documentation for such software.
|
|
1151
|
+
|
|
1152
|
+
THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
|
|
1153
|
+
WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR AT&T MAKES ANY
|
|
1154
|
+
REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
|
|
1155
|
+
OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
|
|
1156
|
+
|
|
1157
|
+
(4) Advanced Micro Devices
|
|
1158
|
+
|
|
1159
|
+
Copyright 1989, 1990 Advanced Micro Devices, Inc.
|
|
1160
|
+
|
|
1161
|
+
This software is the property of Advanced Micro Devices, Inc (AMD) which
|
|
1162
|
+
specifically grants the user the right to modify, use and distribute this
|
|
1163
|
+
software provided this notice is not removed or altered. All other rights
|
|
1164
|
+
are reserved by AMD.
|
|
1165
|
+
|
|
1166
|
+
AMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS
|
|
1167
|
+
SOFTWARE. IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL
|
|
1168
|
+
DAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR
|
|
1169
|
+
USE OF THIS SOFTWARE.
|
|
1170
|
+
|
|
1171
|
+
So that all may benefit from your experience, please report any problems
|
|
1172
|
+
or suggestions about this software to the 29K Technical Support Center at
|
|
1173
|
+
800-29-29-AMD (800-292-9263) in the USA, or 0800-89-1131 in the UK, or
|
|
1174
|
+
0031-11-1129 in Japan, toll free. The direct dial number is 512-462-4118.
|
|
1175
|
+
|
|
1176
|
+
Advanced Micro Devices, Inc.
|
|
1177
|
+
29K Support Products
|
|
1178
|
+
Mail Stop 573
|
|
1179
|
+
5900 E. Ben White Blvd.
|
|
1180
|
+
Austin, TX 78741
|
|
1181
|
+
800-292-9263
|
|
1182
|
+
|
|
1183
|
+
(5) C.W. Sandmann
|
|
1184
|
+
|
|
1185
|
+
Copyright (C) 1993 C.W. Sandmann
|
|
1186
|
+
|
|
1187
|
+
This file may be freely distributed as long as the author's name remains.
|
|
1188
|
+
|
|
1189
|
+
(6) Eric Backus
|
|
1190
|
+
|
|
1191
|
+
(C) Copyright 1992 Eric Backus
|
|
1192
|
+
|
|
1193
|
+
This software may be used freely so long as this copyright notice is
|
|
1194
|
+
left intact. There is no warrantee on this software.
|
|
1195
|
+
|
|
1196
|
+
(7) Sun Microsystems
|
|
1197
|
+
|
|
1198
|
+
Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
1199
|
+
|
|
1200
|
+
Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
1201
|
+
Permission to use, copy, modify, and distribute this
|
|
1202
|
+
software is freely granted, provided that this notice
|
|
1203
|
+
is preserved.
|
|
1204
|
+
|
|
1205
|
+
(8) Hewlett Packard
|
|
1206
|
+
|
|
1207
|
+
(c) Copyright 1986 HEWLETT-PACKARD COMPANY
|
|
1208
|
+
|
|
1209
|
+
To anyone who acknowledges that this file is provided "AS IS"
|
|
1210
|
+
without any express or implied warranty:
|
|
1211
|
+
permission to use, copy, modify, and distribute this file
|
|
1212
|
+
for any purpose is hereby granted without fee, provided that
|
|
1213
|
+
the above copyright notice and this notice appears in all
|
|
1214
|
+
copies, and that the name of Hewlett-Packard Company not be
|
|
1215
|
+
used in advertising or publicity pertaining to distribution
|
|
1216
|
+
of the software without specific, written prior permission.
|
|
1217
|
+
Hewlett-Packard Company makes no representations about the
|
|
1218
|
+
suitability of this software for any purpose.
|
|
1219
|
+
|
|
1220
|
+
(9) Hans-Peter Nilsson
|
|
1221
|
+
|
|
1222
|
+
Copyright (C) 2001 Hans-Peter Nilsson
|
|
1223
|
+
|
|
1224
|
+
Permission to use, copy, modify, and distribute this software is
|
|
1225
|
+
freely granted, provided that the above copyright notice, this notice
|
|
1226
|
+
and the following disclaimer are preserved with no changes.
|
|
1227
|
+
|
|
1228
|
+
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
1229
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
1230
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
1231
|
+
PURPOSE.
|
|
1232
|
+
|
|
1233
|
+
(10) Stephane Carrez (m68hc11-elf/m68hc12-elf targets only)
|
|
1234
|
+
|
|
1235
|
+
Copyright (C) 1999, 2000, 2001, 2002 Stephane Carrez (stcarrez@nerim.fr)
|
|
1236
|
+
|
|
1237
|
+
The authors hereby grant permission to use, copy, modify, distribute,
|
|
1238
|
+
and license this software and its documentation for any purpose, provided
|
|
1239
|
+
that existing copyright notices are retained in all copies and that this
|
|
1240
|
+
notice is included verbatim in any distributions. No written agreement,
|
|
1241
|
+
license, or royalty fee is required for any of the authorized uses.
|
|
1242
|
+
Modifications to this software may be copyrighted by their authors
|
|
1243
|
+
and need not follow the licensing terms described here, provided that
|
|
1244
|
+
the new terms are clearly indicated on the first page of each file where
|
|
1245
|
+
they apply.
|
|
1246
|
+
|
|
1247
|
+
(11) Christopher G. Demetriou
|
|
1248
|
+
|
|
1249
|
+
Copyright (c) 2001 Christopher G. Demetriou
|
|
1250
|
+
All rights reserved.
|
|
1251
|
+
|
|
1252
|
+
Redistribution and use in source and binary forms, with or without
|
|
1253
|
+
modification, are permitted provided that the following conditions
|
|
1254
|
+
are met:
|
|
1255
|
+
1. Redistributions of source code must retain the above copyright
|
|
1256
|
+
notice, this list of conditions and the following disclaimer.
|
|
1257
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1258
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1259
|
+
documentation and/or other materials provided with the distribution.
|
|
1260
|
+
3. The name of the author may not be used to endorse or promote products
|
|
1261
|
+
derived from this software without specific prior written permission.
|
|
1262
|
+
|
|
1263
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
1264
|
+
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
1265
|
+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
1266
|
+
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
1267
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
1268
|
+
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1269
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1270
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1271
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
1272
|
+
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1273
|
+
|
|
1274
|
+
(12) SuperH, Inc.
|
|
1275
|
+
|
|
1276
|
+
Copyright 2002 SuperH, Inc. All rights reserved
|
|
1277
|
+
|
|
1278
|
+
This software is the property of SuperH, Inc (SuperH) which specifically
|
|
1279
|
+
grants the user the right to modify, use and distribute this software
|
|
1280
|
+
provided this notice is not removed or altered. All other rights are
|
|
1281
|
+
reserved by SuperH.
|
|
1282
|
+
|
|
1283
|
+
SUPERH MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO
|
|
1284
|
+
THIS SOFTWARE. IN NO EVENT SHALL SUPERH BE LIABLE FOR INDIRECT, SPECIAL,
|
|
1285
|
+
INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING FROM
|
|
1286
|
+
THE FURNISHING, PERFORMANCE, OR USE OF THIS SOFTWARE.
|
|
1287
|
+
|
|
1288
|
+
So that all may benefit from your experience, please report any problems
|
|
1289
|
+
or suggestions about this software to the SuperH Support Center via
|
|
1290
|
+
e-mail at softwaresupport@superh.com .
|
|
1291
|
+
|
|
1292
|
+
SuperH, Inc.
|
|
1293
|
+
405 River Oaks Parkway
|
|
1294
|
+
San Jose
|
|
1295
|
+
CA 95134
|
|
1296
|
+
USA
|
|
1297
|
+
|
|
1298
|
+
(13) Royal Institute of Technology
|
|
1299
|
+
|
|
1300
|
+
Copyright (c) 1999 Kungliga Tekniska Hgskolan
|
|
1301
|
+
(Royal Institute of Technology, Stockholm, Sweden).
|
|
1302
|
+
All rights reserved.
|
|
1303
|
+
|
|
1304
|
+
Redistribution and use in source and binary forms, with or without
|
|
1305
|
+
modification, are permitted provided that the following conditions
|
|
1306
|
+
are met:
|
|
1307
|
+
|
|
1308
|
+
1. Redistributions of source code must retain the above copyright
|
|
1309
|
+
notice, this list of conditions and the following disclaimer.
|
|
1310
|
+
|
|
1311
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1312
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1313
|
+
documentation and/or other materials provided with the distribution.
|
|
1314
|
+
|
|
1315
|
+
3. Neither the name of KTH nor the names of its contributors may be
|
|
1316
|
+
used to endorse or promote products derived from this software without
|
|
1317
|
+
specific prior written permission.
|
|
1318
|
+
|
|
1319
|
+
THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY
|
|
1320
|
+
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1321
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
1322
|
+
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE
|
|
1323
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
1324
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
1325
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
1326
|
+
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
1327
|
+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
1328
|
+
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
1329
|
+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1330
|
+
|
|
1331
|
+
(14) Alexey Zelkin
|
|
1332
|
+
|
|
1333
|
+
Copyright (c) 2000, 2001 Alexey Zelkin <phantom@FreeBSD.org>
|
|
1334
|
+
All rights reserved.
|
|
1335
|
+
|
|
1336
|
+
Redistribution and use in source and binary forms, with or without
|
|
1337
|
+
modification, are permitted provided that the following conditions
|
|
1338
|
+
are met:
|
|
1339
|
+
1. Redistributions of source code must retain the above copyright
|
|
1340
|
+
notice, this list of conditions and the following disclaimer.
|
|
1341
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1342
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1343
|
+
documentation and/or other materials provided with the distribution.
|
|
1344
|
+
|
|
1345
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
1346
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1347
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
1348
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
1349
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1350
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
1351
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
1352
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
1353
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
1354
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
1355
|
+
SUCH DAMAGE.
|
|
1356
|
+
|
|
1357
|
+
(15) Andrey A. Chernov
|
|
1358
|
+
|
|
1359
|
+
Copyright (C) 1997 by Andrey A. Chernov, Moscow, Russia.
|
|
1360
|
+
All rights reserved.
|
|
1361
|
+
|
|
1362
|
+
Redistribution and use in source and binary forms, with or without
|
|
1363
|
+
modification, are permitted provided that the following conditions
|
|
1364
|
+
are met:
|
|
1365
|
+
1. Redistributions of source code must retain the above copyright
|
|
1366
|
+
notice, this list of conditions and the following disclaimer.
|
|
1367
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1368
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1369
|
+
documentation and/or other materials provided with the distribution.
|
|
1370
|
+
|
|
1371
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
|
|
1372
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1373
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
1374
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
1375
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1376
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
1377
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
1378
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
1379
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
1380
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
1381
|
+
SUCH DAMAGE.
|
|
1382
|
+
|
|
1383
|
+
(16) FreeBSD
|
|
1384
|
+
|
|
1385
|
+
Copyright (c) 1997-2002 FreeBSD Project.
|
|
1386
|
+
All rights reserved.
|
|
1387
|
+
|
|
1388
|
+
Redistribution and use in source and binary forms, with or without
|
|
1389
|
+
modification, are permitted provided that the following conditions
|
|
1390
|
+
are met:
|
|
1391
|
+
1. Redistributions of source code must retain the above copyright
|
|
1392
|
+
notice, this list of conditions and the following disclaimer.
|
|
1393
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1394
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1395
|
+
documentation and/or other materials provided with the distribution.
|
|
1396
|
+
|
|
1397
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
1398
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1399
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
1400
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
1401
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1402
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
1403
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
1404
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
1405
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
1406
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
1407
|
+
SUCH DAMAGE.
|
|
1408
|
+
|
|
1409
|
+
(17) S. L. Moshier
|
|
1410
|
+
|
|
1411
|
+
Author: S. L. Moshier.
|
|
1412
|
+
|
|
1413
|
+
Copyright (c) 1984,2000 S.L. Moshier
|
|
1414
|
+
|
|
1415
|
+
Permission to use, copy, modify, and distribute this software for any
|
|
1416
|
+
purpose without fee is hereby granted, provided that this entire notice
|
|
1417
|
+
is included in all copies of any software which is or includes a copy
|
|
1418
|
+
or modification of this software and in all copies of the supporting
|
|
1419
|
+
documentation for such software.
|
|
1420
|
+
|
|
1421
|
+
THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
|
|
1422
|
+
WARRANTY. IN PARTICULAR, THE AUTHOR MAKES NO REPRESENTATION
|
|
1423
|
+
OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS
|
|
1424
|
+
SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
|
|
1425
|
+
|
|
1426
|
+
(18) Citrus Project
|
|
1427
|
+
|
|
1428
|
+
Copyright (c)1999 Citrus Project,
|
|
1429
|
+
All rights reserved.
|
|
1430
|
+
|
|
1431
|
+
Redistribution and use in source and binary forms, with or without
|
|
1432
|
+
modification, are permitted provided that the following conditions
|
|
1433
|
+
are met:
|
|
1434
|
+
1. Redistributions of source code must retain the above copyright
|
|
1435
|
+
notice, this list of conditions and the following disclaimer.
|
|
1436
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1437
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1438
|
+
documentation and/or other materials provided with the distribution.
|
|
1439
|
+
|
|
1440
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
1441
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1442
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
1443
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
1444
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1445
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
1446
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
1447
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
1448
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
1449
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
1450
|
+
SUCH DAMAGE.
|
|
1451
|
+
|
|
1452
|
+
(19) Todd C. Miller
|
|
1453
|
+
|
|
1454
|
+
Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
|
|
1455
|
+
All rights reserved.
|
|
1456
|
+
|
|
1457
|
+
Redistribution and use in source and binary forms, with or without
|
|
1458
|
+
modification, are permitted provided that the following conditions
|
|
1459
|
+
are met:
|
|
1460
|
+
1. Redistributions of source code must retain the above copyright
|
|
1461
|
+
notice, this list of conditions and the following disclaimer.
|
|
1462
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1463
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1464
|
+
documentation and/or other materials provided with the distribution.
|
|
1465
|
+
3. The name of the author may not be used to endorse or promote products
|
|
1466
|
+
derived from this software without specific prior written permission.
|
|
1467
|
+
|
|
1468
|
+
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
1469
|
+
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
1470
|
+
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
1471
|
+
THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
1472
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
1473
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
1474
|
+
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
1475
|
+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
1476
|
+
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
1477
|
+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1478
|
+
|
|
1479
|
+
(20) DJ Delorie (i386)
|
|
1480
|
+
|
|
1481
|
+
Copyright (C) 1991 DJ Delorie
|
|
1482
|
+
All rights reserved.
|
|
1483
|
+
|
|
1484
|
+
Redistribution and use in source and binary forms is permitted
|
|
1485
|
+
provided that the above copyright notice and following paragraph are
|
|
1486
|
+
duplicated in all such forms.
|
|
1487
|
+
|
|
1488
|
+
This file is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
1489
|
+
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
1490
|
+
|
|
1491
|
+
(21) Free Software Foundation LGPL License (*-linux* targets only)
|
|
1492
|
+
|
|
1493
|
+
Copyright (C) 1990-1999, 2000, 2001
|
|
1494
|
+
Free Software Foundation, Inc.
|
|
1495
|
+
This file is part of the GNU C Library.
|
|
1496
|
+
Contributed by Mark Kettenis <kettenis@phys.uva.nl>, 1997.
|
|
1497
|
+
|
|
1498
|
+
The GNU C Library is free software; you can redistribute it and/or
|
|
1499
|
+
modify it under the terms of the GNU Lesser General Public
|
|
1500
|
+
License as published by the Free Software Foundation; either
|
|
1501
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
1502
|
+
|
|
1503
|
+
The GNU C Library is distributed in the hope that it will be useful,
|
|
1504
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
1505
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
1506
|
+
Lesser General Public License for more details.
|
|
1507
|
+
|
|
1508
|
+
You should have received a copy of the GNU Lesser General Public
|
|
1509
|
+
License along with the GNU C Library; if not, write to the Free
|
|
1510
|
+
Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
|
1511
|
+
02110-1301 USA
|
|
1512
|
+
|
|
1513
|
+
(22) Xavier Leroy LGPL License (i[3456]86-*-linux* targets only)
|
|
1514
|
+
|
|
1515
|
+
Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr)
|
|
1516
|
+
|
|
1517
|
+
This program is free software; you can redistribute it and/or
|
|
1518
|
+
modify it under the terms of the GNU Library General Public License
|
|
1519
|
+
as published by the Free Software Foundation; either version 2
|
|
1520
|
+
of the License, or (at your option) any later version.
|
|
1521
|
+
|
|
1522
|
+
This program is distributed in the hope that it will be useful,
|
|
1523
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
1524
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
1525
|
+
GNU Library General Public License for more details.
|
|
1526
|
+
|
|
1527
|
+
(23) Intel (i960)
|
|
1528
|
+
|
|
1529
|
+
Copyright (c) 1993 Intel Corporation
|
|
1530
|
+
|
|
1531
|
+
Intel hereby grants you permission to copy, modify, and distribute this
|
|
1532
|
+
software and its documentation. Intel grants this permission provided
|
|
1533
|
+
that the above copyright notice appears in all copies and that both the
|
|
1534
|
+
copyright notice and this permission notice appear in supporting
|
|
1535
|
+
documentation. In addition, Intel grants this permission provided that
|
|
1536
|
+
you prominently mark as "not part of the original" any modifications
|
|
1537
|
+
made to this software or documentation, and that the name of Intel
|
|
1538
|
+
Corporation not be used in advertising or publicity pertaining to
|
|
1539
|
+
distribution of the software or the documentation without specific,
|
|
1540
|
+
written prior permission.
|
|
1541
|
+
|
|
1542
|
+
Intel Corporation provides this AS IS, WITHOUT ANY WARRANTY, EXPRESS OR
|
|
1543
|
+
IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY
|
|
1544
|
+
OR FITNESS FOR A PARTICULAR PURPOSE. Intel makes no guarantee or
|
|
1545
|
+
representations regarding the use of, or the results of the use of,
|
|
1546
|
+
the software and documentation in terms of correctness, accuracy,
|
|
1547
|
+
reliability, currentness, or otherwise; and you rely on the software,
|
|
1548
|
+
documentation and results solely at your own risk.
|
|
1549
|
+
|
|
1550
|
+
IN NO EVENT SHALL INTEL BE LIABLE FOR ANY LOSS OF USE, LOSS OF BUSINESS,
|
|
1551
|
+
LOSS OF PROFITS, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES
|
|
1552
|
+
OF ANY KIND. IN NO EVENT SHALL INTEL'S TOTAL LIABILITY EXCEED THE SUM
|
|
1553
|
+
PAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER.
|
|
1554
|
+
|
|
1555
|
+
(24) Hewlett-Packard (hppa targets only)
|
|
1556
|
+
|
|
1557
|
+
(c) Copyright 1986 HEWLETT-PACKARD COMPANY
|
|
1558
|
+
|
|
1559
|
+
To anyone who acknowledges that this file is provided "AS IS"
|
|
1560
|
+
without any express or implied warranty:
|
|
1561
|
+
permission to use, copy, modify, and distribute this file
|
|
1562
|
+
for any purpose is hereby granted without fee, provided that
|
|
1563
|
+
the above copyright notice and this notice appears in all
|
|
1564
|
+
copies, and that the name of Hewlett-Packard Company not be
|
|
1565
|
+
used in advertising or publicity pertaining to distribution
|
|
1566
|
+
of the software without specific, written prior permission.
|
|
1567
|
+
Hewlett-Packard Company makes no representations about the
|
|
1568
|
+
suitability of this software for any purpose.
|
|
1569
|
+
|
|
1570
|
+
(25) Henry Spencer (only *-linux targets)
|
|
1571
|
+
|
|
1572
|
+
Copyright 1992, 1993, 1994 Henry Spencer. All rights reserved.
|
|
1573
|
+
This software is not subject to any license of the American Telephone
|
|
1574
|
+
and Telegraph Company or of the Regents of the University of California.
|
|
1575
|
+
|
|
1576
|
+
Permission is granted to anyone to use this software for any purpose on
|
|
1577
|
+
any computer system, and to alter it and redistribute it, subject
|
|
1578
|
+
to the following restrictions:
|
|
1579
|
+
|
|
1580
|
+
1. The author is not responsible for the consequences of use of this
|
|
1581
|
+
software, no matter how awful, even if they arise from flaws in it.
|
|
1582
|
+
|
|
1583
|
+
2. The origin of this software must not be misrepresented, either by
|
|
1584
|
+
explicit claim or by omission. Since few users ever read sources,
|
|
1585
|
+
credits must appear in the documentation.
|
|
1586
|
+
|
|
1587
|
+
3. Altered versions must be plainly marked as such, and must not be
|
|
1588
|
+
misrepresented as being the original software. Since few users
|
|
1589
|
+
ever read sources, credits must appear in the documentation.
|
|
1590
|
+
|
|
1591
|
+
4. This notice may not be removed or altered.
|
|
1592
|
+
|
|
1593
|
+
(26) Mike Barcroft
|
|
1594
|
+
|
|
1595
|
+
Copyright (c) 2001 Mike Barcroft <mike@FreeBSD.org>
|
|
1596
|
+
All rights reserved.
|
|
1597
|
+
|
|
1598
|
+
Redistribution and use in source and binary forms, with or without
|
|
1599
|
+
modification, are permitted provided that the following conditions
|
|
1600
|
+
are met:
|
|
1601
|
+
1. Redistributions of source code must retain the above copyright
|
|
1602
|
+
notice, this list of conditions and the following disclaimer.
|
|
1603
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1604
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1605
|
+
documentation and/or other materials provided with the distribution.
|
|
1606
|
+
|
|
1607
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
1608
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1609
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
1610
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
1611
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1612
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
1613
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
1614
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
1615
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
1616
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
1617
|
+
SUCH DAMAGE.
|
|
1618
|
+
|
|
1619
|
+
(27) Konstantin Chuguev (--enable-newlib-iconv)
|
|
1620
|
+
|
|
1621
|
+
Copyright (c) 1999, 2000
|
|
1622
|
+
Konstantin Chuguev. All rights reserved.
|
|
1623
|
+
|
|
1624
|
+
Redistribution and use in source and binary forms, with or without
|
|
1625
|
+
modification, are permitted provided that the following conditions
|
|
1626
|
+
are met:
|
|
1627
|
+
1. Redistributions of source code must retain the above copyright
|
|
1628
|
+
notice, this list of conditions and the following disclaimer.
|
|
1629
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1630
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1631
|
+
documentation and/or other materials provided with the distribution.
|
|
1632
|
+
|
|
1633
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
1634
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1635
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
1636
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
1637
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1638
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
1639
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
1640
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
1641
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
1642
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
1643
|
+
SUCH DAMAGE.
|
|
1644
|
+
|
|
1645
|
+
iconv (Charset Conversion Library) v2.0
|
|
1646
|
+
|
|
1647
|
+
(27) Artem Bityuckiy (--enable-newlib-iconv)
|
|
1648
|
+
|
|
1649
|
+
Copyright (c) 2003, Artem B. Bityuckiy, SoftMine Corporation.
|
|
1650
|
+
Rights transferred to Franklin Electronic Publishers.
|
|
1651
|
+
|
|
1652
|
+
Redistribution and use in source and binary forms, with or without
|
|
1653
|
+
modification, are permitted provided that the following conditions
|
|
1654
|
+
are met:
|
|
1655
|
+
1. Redistributions of source code must retain the above copyright
|
|
1656
|
+
notice, this list of conditions and the following disclaimer.
|
|
1657
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
1658
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1659
|
+
documentation and/or other materials provided with the distribution.
|
|
1660
|
+
|
|
1661
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
1662
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1663
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
1664
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
1665
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
1666
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
1667
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
1668
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
1669
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
1670
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
1671
|
+
SUCH DAMAGE.
|
|
1672
|
+
|
|
1673
|
+
(28) Red Hat Incorporated
|
|
1674
|
+
|
|
1675
|
+
Unless otherwise stated in each remaining newlib file, the remaining
|
|
1676
|
+
files in the newlib subdirectory default to the following copyright.
|
|
1677
|
+
It should be noted that Red Hat Incorporated now owns copyrights
|
|
1678
|
+
belonging to Cygnus Solutions and Cygnus Support.
|
|
1679
|
+
|
|
1680
|
+
Copyright (c) 1994, 1997, 2001, 2002, 2003, 2004 Red Hat Incorporated.
|
|
1681
|
+
All rights reserved.
|
|
1682
|
+
|
|
1683
|
+
Redistribution and use in source and binary forms, with or without
|
|
1684
|
+
modification, are permitted provided that the following conditions are met:
|
|
1685
|
+
|
|
1686
|
+
Redistributions of source code must retain the above copyright
|
|
1687
|
+
notice, this list of conditions and the following disclaimer.
|
|
1688
|
+
|
|
1689
|
+
Redistributions in binary form must reproduce the above copyright
|
|
1690
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1691
|
+
documentation and/or other materials provided with the distribution.
|
|
1692
|
+
|
|
1693
|
+
The name of Red Hat Incorporated may not be used to endorse
|
|
1694
|
+
or promote products derived from this software without specific
|
|
1695
|
+
prior written permission.
|
|
1696
|
+
|
|
1697
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
1698
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1699
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
1700
|
+
DISCLAIMED. IN NO EVENT SHALL RED HAT INCORPORATED BE LIABLE FOR ANY
|
|
1701
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
1702
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
1703
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
1704
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1705
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
1706
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1707
|
+
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
The Debian packaging is:
|
|
1711
|
+
|
|
1712
|
+
Copyright © 2010-2019 Stephen Kitt <skitt@debian.org>
|
|
1713
|
+
|
|
1714
|
+
and is licensed under the GPL version 3 or later, see above.
|