Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix licensing #11782

Open
wants to merge 6 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions extra/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,29 @@
Haxe Licenses
-------------

For details about Haxe Licenses, please read http://haxe.org/foundation/open-source.html
The Haxe toolkit is Free and Open-Source software that uses several licenses.

The Haxe Standard Library MIT License :
The Haxe compiler is licensed under the GNU GPL v2+ license (SPDX: GPL-2.0-or-later).

The compiler is built around the Haxe source code base.

If a file does not have a license header or does not fall under one of the exceptions listed below,
it should be assumed to be licensed under the GNU GPL v2+ license with the standard copyright notice:
Copyright (C) 2005-2024 Haxe Foundation.

- The Haxe Standard Library is licensed under the MIT License, which is reproduced below.
It is located in the `std/` directory, and the MIT license applies to this part of Haxe.

- Haxe contains third-party source code, some of which is located in the `libs/` directory.
Each third-party module includes its own license.
For integration with Haxe, these modules may contain Haxe-related files such as a "dune" file
or other files for integration with Haxe or OCaml.
These files are licensed under the Haxe Compiler license (GNU GPL v2+).

For a summary of Haxe licenses, please read [http://haxe.org/foundation/open-source.html](http://haxe.org/foundation/open-source.html).


The Haxe Standard Library MIT License:
--------------------------

Copyright (C)2005-2016 Haxe Foundation
Expand All @@ -26,7 +46,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

The Haxe compiler GPL License :
The Haxe compiler GPL License:
-------------------------------

GNU GENERAL PUBLIC LICENSE
Expand Down
Loading