-
Hi, my team would like to use the package uWebSockets.js-18.3.0, and to approved that I've to verify all licenses. I've analyzed this package and I've found the sentence "Copyright (c) by P.J. Plauger, licensed by Dinkumware, Ltd. ALL RIGHTS RESERVED" in the following binaries embedded in the code: It does not appear that this open source package can just distribute files copyrighted by Dinkumware unless you have a license first. May I kindly ask you if you have a license to redistribute code from Dinkumware? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
What kind of internal deal Microsoft and Dinkumware have is up to them. Those binaries are the output of Microsoft Visual C++. All windows binaries have that tag, even node.exe. |
Beta Was this translation helpful? Give feedback.
-
I found this: https://devblogs.microsoft.com/cppblog/open-sourcing-msvcs-stl/
Where the LLVM Exception is extremely permissive: https://spdx.org/licenses/LLVM-exception.html
So yes, we undoubtedly have rights to distribute these binaries. And if you think about it, the entire software ecosystem would implode if we didn't. (Literally all software ever compiled for Windows would be owned by Microsoft). Alright |
Beta Was this translation helpful? Give feedback.
-
Thanks a lot! |
Beta Was this translation helpful? Give feedback.
-
No problem, this was interesting to research anyways |
Beta Was this translation helpful? Give feedback.
I found this:
https://devblogs.microsoft.com/cppblog/open-sourcing-msvcs-stl/
Where the LLVM Exception is extremely permissive:
https://spdx.org/licenses/LLVM-exception.html
So yes, we undoubtedly have rights to distribute these binaries. And if you think about it, the entire software eco…