COPYRIGHT 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. musl as a whole is licensed under the following standard MIT license:
  2. ----------------------------------------------------------------------
  3. Copyright © 2005-2014 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. Alex Dowad
  24. Alexander Monakov
  25. Andrew Kelley
  26. Anthony G. Basile
  27. Arvid Picciani
  28. Bartosz Brachaczek
  29. Bobby Bingham
  30. Boris Brezillon
  31. Brent Cook
  32. Chris Spiegel
  33. Clément Vasseur
  34. Daniel Micay
  35. Daniel Sabogal
  36. Daurnimator
  37. David Edelsohn
  38. Denys Vlasenko
  39. Dmitry Ivanov
  40. Dmitry V. Levin
  41. Emil Renner Berthing
  42. Felix Fietkau
  43. Felix Janda
  44. Gianluca Anzolin
  45. Hauke Mehrtens
  46. He X
  47. Hiltjo Posthuma
  48. Isaac Dunham
  49. Jaydeep Patil
  50. Jens Gustedt
  51. Jeremy Huntwork
  52. Jo-Philipp Wich
  53. Joakim Sindholt
  54. John Spencer
  55. Josiah Worcester
  56. Julien Ramseier
  57. Justin Cormack
  58. Khem Raj
  59. Kylie McClain
  60. Leah Neukirchen
  61. Luca Barbato
  62. Luka Perkov
  63. M Farkas-Dyck (Strake)
  64. Mahesh Bodapati
  65. Masanori Ogino
  66. Michael Forney
  67. Mikhail Kremnyov
  68. Natanael Copa
  69. Nicholas J. Kain
  70. orc
  71. Pascal Cuoq
  72. Petr Hosek
  73. Petr Skocik
  74. Pierre Carrier
  75. Reini Urban
  76. Rich Felker
  77. Richard Pennington
  78. Samuel Holland
  79. Shiz
  80. sin
  81. Solar Designer
  82. Stefan Kristiansson
  83. Szabolcs Nagy
  84. Timo Teräs
  85. Trutz Behn
  86. Valentin Ochs
  87. William Haddon
  88. William Pitcock
  89. Portions of this software are derived from third-party works licensed
  90. under terms compatible with the above MIT license:
  91. The TRE regular expression implementation (src/regex/reg* and
  92. src/regex/tre*) is Copyright © 2001-2008 Ville Laurikari and licensed
  93. under a 2-clause BSD license (license text in the source files). The
  94. included version has been heavily modified by Rich Felker in 2012, in
  95. the interests of size, simplicity, and namespace cleanliness.
  96. Much of the math library code (src/math/* and src/complex/*) is
  97. Copyright © 1993,2004 Sun Microsystems or
  98. Copyright © 2003-2011 David Schultz or
  99. Copyright © 2003-2009 Steven G. Kargl or
  100. Copyright © 2003-2009 Bruce D. Evans or
  101. Copyright © 2008 Stephen L. Moshier
  102. and labelled as such in comments in the individual source files. All
  103. have been licensed under extremely permissive terms.
  104. The ARM memcpy code (src/string/arm/memcpy_el.S) is Copyright © 2008
  105. The Android Open Source Project and is licensed under a two-clause BSD
  106. license. It was taken from Bionic libc, used on Android.
  107. The implementation of DES for crypt (src/crypt/crypt_des.c) is
  108. Copyright © 1994 David Burren. It is licensed under a BSD license.
  109. The implementation of blowfish crypt (src/crypt/crypt_blowfish.c) was
  110. originally written by Solar Designer and placed into the public
  111. domain. The code also comes with a fallback permissive license for use
  112. in jurisdictions that may not recognize the public domain.
  113. The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011
  114. Valentin Ochs and is licensed under an MIT-style license.
  115. The x86_64 port was written by Nicholas J. Kain and is licensed under
  116. the standard MIT terms.
  117. The mips and microblaze ports were originally written by Richard
  118. Pennington for use in the ellcc project. The original code was adapted
  119. by Rich Felker for build system and code conventions during upstream
  120. integration. It is licensed under the standard MIT terms.
  121. The mips64 port was contributed by Imagination Technologies and is
  122. licensed under the standard MIT terms.
  123. The powerpc port was also originally written by Richard Pennington,
  124. and later supplemented and integrated by John Spencer. It is licensed
  125. under the standard MIT terms.
  126. All other files which have no copyright comments are original works
  127. produced specifically for use as part of this library, written either
  128. by Rich Felker, the main author of the library, or by one or more
  129. contibutors listed above. Details on authorship of individual files
  130. can be found in the git version control history of the project. The
  131. omission of copyright and license comments in each file is in the
  132. interest of source tree size.
  133. In addition, permission is hereby granted for all public header files
  134. (include/* and arch/*/bits/*) and crt files intended to be linked into
  135. applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit
  136. the copyright notice and permission notice otherwise required by the
  137. license, and to use these files without any requirement of
  138. attribution. These files include substantial contributions from:
  139. Bobby Bingham
  140. John Spencer
  141. Nicholas J. Kain
  142. Rich Felker
  143. Richard Pennington
  144. Stefan Kristiansson
  145. Szabolcs Nagy
  146. all of whom have explicitly granted such permission.
  147. This file previously contained text expressing a belief that most of
  148. the files covered by the above exception were sufficiently trivial not
  149. to be subject to copyright, resulting in confusion over whether it
  150. negated the permissions granted in the license. In the spirit of
  151. permissive licensing, and of not having licensing issues being an
  152. obstacle to adoption, that text has been removed.