1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-05-12 12:00:13 +00:00

Add the libcurl license

This commit is contained in:
Matthew Kilgore 2022-10-06 22:57:31 -04:00
parent 1eec789114
commit b066c641f4
2 changed files with 22 additions and 0 deletions

View file

@ -71,6 +71,14 @@ These libraries are pulled in if `_INFLATE$()` or `_DEFLATE$()` are used.
| :------ | :-----: | :----------- | :------- |
| ZLib | ZLIB | license_zlib.txt | internal/c/c_compiler (provide by MinGW on Windows, system library otherwise) |
## Http Support
These libraries are pulled in if `_OPENCLIENT()` and `$Unstable:Http` areused:
| Library | License | License file | Location |
| :------ | :-----: | :----------- | :------- |
| libcurl | curl | license_libcurl.txt | internal/c/parts/network/http/curl/ |
## Sound Support
These libraries are pulled in when using any sound-related functionality.

View file

@ -0,0 +1,14 @@
--------------------------------------------------------------------------------
License of libcurl:
COPYRIGHT AND PERMISSION NOTICE
Copyright (c) 1996 - 2022, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file.
All rights reserved.
Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
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 OF THIRD PARTY RIGHTS. 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.
Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder.