COPYRIGHT 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. musl as a whole is licensed under the following standard MIT license:
  2. ----------------------------------------------------------------------
  3. Copyright © 2005-2020 Rich Felker, et al.
  4. Permission is hereby granted, free of charge, to any person obtaining
  5. a copy of this software and associated documentation files (the
  6. "Software"), to deal in the Software without restriction, including
  7. without limitation the rights to use, copy, modify, merge, publish,
  8. distribute, sublicense, and/or sell copies of the Software, and to
  9. permit persons to whom the Software is furnished to do so, subject to
  10. the following conditions:
  11. The above copyright notice and this permission notice shall be
  12. included in all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  14. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  15. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  16. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  17. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  18. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  19. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  20. ----------------------------------------------------------------------
  21. Authors/contributors include:
  22. A. Wilcox
  23. Ada Worcester
  24. Alex Dowad
  25. Alex Suykov
  26. Alexander Monakov
  27. Andre McCurdy
  28. Andrew Kelley
  29. Anthony G. Basile
  30. Aric Belsito
  31. Arvid Picciani
  32. Bartosz Brachaczek
  33. Benjamin Peterson
  34. Bobby Bingham
  35. Boris Brezillon
  36. Brent Cook
  37. Chris Spiegel
  38. Clément Vasseur
  39. Daniel Micay
  40. Daniel Sabogal
  41. Daurnimator
  42. David Carlier
  43. David Edelsohn
  44. Denys Vlasenko
  45. Dmitry Ivanov
  46. Dmitry V. Levin
  47. Drew DeVault
  48. Emil Renner Berthing
  49. Fangrui Song
  50. Felix Fietkau
  51. Felix Janda
  52. Gianluca Anzolin
  53. Hauke Mehrtens
  54. He X
  55. Hiltjo Posthuma
  56. Isaac Dunham
  57. Jaydeep Patil
  58. Jens Gustedt
  59. Jeremy Huntwork
  60. Jo-Philipp Wich
  61. Joakim Sindholt
  62. John Spencer
  63. Julien Ramseier
  64. Justin Cormack
  65. Kaarle Ritvanen
  66. Khem Raj
  67. Kylie McClain
  68. Leah Neukirchen
  69. Luca Barbato
  70. Luka Perkov
  71. M Farkas-Dyck (Strake)
  72. Mahesh Bodapati
  73. Markus Wichmann
  74. Masanori Ogino
  75. Michael Clark
  76. Michael Forney
  77. Mikhail Kremnyov
  78. Natanael Copa
  79. Nicholas J. Kain
  80. orc
  81. Pascal Cuoq
  82. Patrick Oppenlander
  83. Petr Hosek
  84. Petr Skocik
  85. Pierre Carrier
  86. Reini Urban
  87. Rich Felker
  88. Richard Pennington
  89. Ryan Fairfax
  90. Samuel Holland
  91. Segev Finer
  92. Shiz
  93. sin
  94. Solar Designer
  95. Stefan Kristiansson
  96. Stefan O'Rear
  97. Szabolcs Nagy
  98. Timo Teräs
  99. Trutz Behn
  100. Valentin Ochs
  101. Will Dietz
  102. William Haddon
  103. William Pitcock
  104. Portions of this software are derived from third-party works licensed
  105. under terms compatible with the above MIT license:
  106. The TRE regular expression implementation (src/regex/reg* and
  107. src/regex/tre*) is Copyright © 2001-2008 Ville Laurikari and licensed
  108. under a 2-clause BSD license (license text in the source files). The
  109. included version has been heavily modified by Rich Felker in 2012, in
  110. the interests of size, simplicity, and namespace cleanliness.
  111. Much of the math library code (src/math/* and src/complex/*) is
  112. Copyright © 1993,2004 Sun Microsystems or
  113. Copyright © 2003-2011 David Schultz or
  114. Copyright © 2003-2009 Steven G. Kargl or
  115. Copyright © 2003-2009 Bruce D. Evans or
  116. Copyright © 2008 Stephen L. Moshier or
  117. Copyright © 2017-2018 Arm Limited
  118. and labelled as such in comments in the individual source files. All
  119. have been licensed under extremely permissive terms.
  120. The ARM memcpy code (src/string/arm/memcpy.S) is Copyright © 2008
  121. The Android Open Source Project and is licensed under a two-clause BSD
  122. license. It was taken from Bionic libc, used on Android.
  123. The AArch64 memcpy and memset code (src/string/aarch64/*) are
  124. Copyright © 1999-2019, Arm Limited.
  125. The implementation of DES for crypt (src/crypt/crypt_des.c) is
  126. Copyright © 1994 David Burren. It is licensed under a BSD license.
  127. The implementation of blowfish crypt (src/crypt/crypt_blowfish.c) was
  128. originally written by Solar Designer and placed into the public
  129. domain. The code also comes with a fallback permissive license for use
  130. in jurisdictions that may not recognize the public domain.
  131. The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011
  132. Valentin Ochs and is licensed under an MIT-style license.
  133. The x86_64 port was written by Nicholas J. Kain and is licensed under
  134. the standard MIT terms.
  135. The mips and microblaze ports were originally written by Richard
  136. Pennington for use in the ellcc project. The original code was adapted
  137. by Rich Felker for build system and code conventions during upstream
  138. integration. It is licensed under the standard MIT terms.
  139. The mips64 port was contributed by Imagination Technologies and is
  140. licensed under the standard MIT terms.
  141. The powerpc port was also originally written by Richard Pennington,
  142. and later supplemented and integrated by John Spencer. It is licensed
  143. under the standard MIT terms.
  144. All other files which have no copyright comments are original works
  145. produced specifically for use as part of this library, written either
  146. by Rich Felker, the main author of the library, or by one or more
  147. contibutors listed above. Details on authorship of individual files
  148. can be found in the git version control history of the project. The
  149. omission of copyright and license comments in each file is in the
  150. interest of source tree size.
  151. In addition, permission is hereby granted for all public header files
  152. (include/* and arch/*/bits/*) and crt files intended to be linked into
  153. applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit
  154. the copyright notice and permission notice otherwise required by the
  155. license, and to use these files without any requirement of
  156. attribution. These files include substantial contributions from:
  157. Bobby Bingham
  158. John Spencer
  159. Nicholas J. Kain
  160. Rich Felker
  161. Richard Pennington
  162. Stefan Kristiansson
  163. Szabolcs Nagy
  164. all of whom have explicitly granted such permission.
  165. This file previously contained text expressing a belief that most of
  166. the files covered by the above exception were sufficiently trivial not
  167. to be subject to copyright, resulting in confusion over whether it
  168. negated the permissions granted in the license. In the spirit of
  169. permissive licensing, and of not having licensing issues being an
  170. obstacle to adoption, that text has been removed.