third_party: add COPYING

This commit is contained in:
Koichiro IWAO 2023-03-19 02:59:50 +09:00
parent 40e3421bf1
commit 2c5940f0a0
3 changed files with 80 additions and 0 deletions

26
third_party/COPYING-THIRD-PARTY vendored Normal file
View File

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

24
third_party/README.md vendored Normal file
View File

@ -0,0 +1,24 @@
# Third-Party Software Components
Under this directory, third-party software/libraries developed independently
of xrdp are imported as git submodules. Each third-party software is subject
to its own software license.
See [COPYING-THIRD-PARTY](third_party/COPYING-THIRD-PARTY) for full license
statement of all third-party components.
```
third_party
└── tomlc99 ······ TOML C library (MIT License)
```
## Developer's Note
In order to show all license terms in xrdp, follow the steps below after
adding new third-party libraries.
1. Install [adobe/bin2c](https://github.com/adobe/bin2c) to your development
environment
2. Write all third-party license terms to `COPYING-THIRD-PARTY`
3. Run `make copying` to generate `copying_third_party.h`
4. Commit generated `copying_third_party.h`

30
third_party/copying_third_party.h vendored Normal file
View File

@ -0,0 +1,30 @@
#include <stdlib.h>
const char copying_third_party[] = "\
-- tomlc99: TOML C library\n\
\n\
MIT License\n\
\n\
Copyright (c) CK Tan\n\
https://github.com/cktan/tomlc99\n\
\n\
Permission is hereby granted, free of charge, to any person obtaining a copy\n\
of this software and associated documentation files (the \"Software\"), to deal\n\
in the Software without restriction, including without limitation the rights\n\
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n\
copies of the Software, and to permit persons to whom the Software is\n\
furnished to do so, subject to the following conditions:\n\
\n\
The above copyright notice and this permission notice shall be included in all\n\
copies or substantial portions of the Software.\n\
\n\
THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n\
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n\
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n\
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n\
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n\
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n\
SOFTWARE.\n\
\n\
--------------------------------------------------------------------------------\n\
";
const size_t copying_third_party_len = sizeof(copying_third_party) - 1;