Fix SpringCoat setting non-static fields with constant values where they are now...
[SquirrelJME.git] / third-party.mkd
blob3fcbf95110390cc9bfeb51f8c8966b19f056e450
1 # Third Party Licenses
3 This document contains a list of licenses from libraries obtained from third
4 parties. These third parties are neither responsible for, provide support,
5 endorse, or otherwise promote _SquirrelJME_.
7 ## Berkeley SoftFloat Release 3e
9 This license applies to `SoftFloat` and `SoftDouble`, additionally to
10 `SoftInteger` and `SoftLong` only for conversion to `float`/`double`.
12  * Site: <http://www.jhauser.us/arithmetic/SoftFloat.html>
13  * License: Modified 3 Clause BSD
14  * Compatibility:
15    * <https://www.gnu.org/licenses/license-list.html#ModifiedBSD>
16    * <http://directory.fsf.org/wiki/License:BSD_3Clause>
18 ```
19 License for Berkeley SoftFloat Release 3e
21 John R. Hauser
22 2018 January 20
24 The following applies to the whole of SoftFloat Release 3e as well as to
25 each source file individually.
27 Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 The Regents of the
28 University of California.  All rights reserved.
30 Redistribution and use in source and binary forms, with or without
31 modification, are permitted provided that the following conditions are met:
33  1. Redistributions of source code must retain the above copyright notice,
34     this list of conditions, and the following disclaimer.
36  2. Redistributions in binary form must reproduce the above copyright
37     notice, this list of conditions, and the following disclaimer in the
38     documentation and/or other materials provided with the distribution.
40  3. Neither the name of the University nor the names of its contributors
41     may be used to endorse or promote products derived from this software
42     without specific prior written permission.
44 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS", AND ANY
45 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
46 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE
47 DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
48 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
49 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
50 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
51 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
53 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 ```
56 ## LibRetro API Header
58 This license only applies to `libretro.h`.
60  * Site: <https://www.libretro.com/>
61  * License: LibRetro `libretro.h` License
63 ```
64 Copyright (C) 2010-2018 The RetroArch team
66 ------------------------------------------------------------------------------
67 The following license statement only applies to this libretro API header
68 (libretro.h).
69 ------------------------------------------------------------------------------
71 Permission is hereby granted, free of charge, to any person obtaining a copy
72 of this software and associated documentation files (the "Software"), to deal
73 in the Software without restriction, including without limitation the rights
74 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
75 copies of the Software, and to permit persons to whom the Software is
76 furnished to do so, subject to the following conditions:
78 The above copyright notice and this permission notice shall be included in all
79 copies or substantial portions of the Software.
81 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
82 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
83 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
84 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
85 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
86 OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
87 OR OTHER DEALINGS IN THE SOFTWARE.
88 ```