-
Notifications
You must be signed in to change notification settings - Fork 38
/
license.php
83 lines (74 loc) · 3.79 KB
/
license.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
$breadcrumbs = array
(
'Learn' => 'learn.php',
'License' => 'license.php'
);
include('header.php');
?>
<h1>License</h1>
<h2 id="sfml"><a class="h2-link" href="#sfml">SFML Libraries</a><a class="back-to-top" href="#top" title="Top of the page"></a></h2>
<p>
The SFML libraries and source code are distributed under the
<a class="external" href="http://opensource.org/licenses/Zlib" title="Terms of the zlib/png license">zlib/png license</a>.
</p>
<pre id="license">
SFML (Simple and Fast Multimedia Library) - Copyright (c) Laurent Gomila
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not claim
that you wrote the original software. If you use this software in a product,
an acknowledgment in the product documentation would be appreciated but is
not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
</pre>
<p>
In short, SFML is free for any use (commercial or personal, proprietary or open-source). You can use SFML in your project without any restriction.
You can even omit to mention that you use SFML -- although it would be appreciated.
</p>
<h2 id="extlibs"><a class="h2-link" href="#extlibs">External Libraries used by SFML</a><a class="back-to-top" href="#top" title="Top of the page"></a></h2>
<ul>
<li>
<strong><a class="external" href="http://www.freetype.org" title="FreeType website">freetype</a></strong>
is distributed under
the <a class="external" href="http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT" title="Terms of the FTL license">FTL license</a>
or the <a class="external" href="http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/GPLv2.TXT" title="Terms of the GPL license">GPL license</a>
</li>
<li>
<strong><a class="external" href="http://www.ijg.org" title="libjpeg website">libjpeg</a></strong>
is in the public domain
</li>
<li>
<strong><a class="external" href="http://nothings.org/stb_image.c" title="stb_image website">stb_image</a></strong>
is in the public domain
</li>
<li>
<strong><a class="external" href="http://kcat.strangesoft.net/openal.html" title="OpenAL Soft website">OpenAL Soft</a></strong>
is distributed under
the <a class="external" href="http://www.gnu.org/copyleft/lesser.html" title="Terms of the LGPL license">LGPL license</a>
</li>
<li>
<strong><a class="external" href="http://www.vorbis.com/" title="Vorbis website">libogg</a></strong>
is distributed under
the <a class="external" href="http://opensource.org/licenses/BSD-3-Clause" title="Terms of the BSD 3 license">BSD 3 license</a>
</li>
<li>
<strong><a class="external" href="http://www.vorbis.com/" title="Vorbis website">libvorbis</a></strong>
is distributed under
the <a class="external" href="http://opensource.org/licenses/BSD-3-Clause" title="Terms of the BSD 3 license">BSD 3 license</a>
</li>
<li>
<strong><a class="external" href="https://xiph.org/flac/" title="FLAC website">libflac</a></strong>
is distributed under
the <a class="external" href="http://opensource.org/licenses/BSD-3-Clause" title="Terms of the BSD 3 license">BSD 3 license</a>
</li>
</ul>
<?php
require("footer.php");
?>