LICENSE-LIBFONTCONFIG 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. fontconfig/COPYING
  2. Copyright © 2000,2001,2002,2003,2004,2006,2007 Keith Packard
  3. Copyright © 2005 Patrick Lam
  4. Copyright © 2007 Dwayne Bailey and Translate.org.za
  5. Copyright © 2009 Roozbeh Pournader
  6. Copyright © 2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020 Red Hat, Inc.
  7. Copyright © 2008 Danilo Šegan
  8. Copyright © 2012 Google, Inc.
  9. Permission to use, copy, modify, distribute, and sell this software and its
  10. documentation for any purpose is hereby granted without fee, provided that
  11. the above copyright notice appear in all copies and that both that
  12. copyright notice and this permission notice appear in supporting
  13. documentation, and that the name of the author(s) not be used in
  14. advertising or publicity pertaining to distribution of the software without
  15. specific, written prior permission. The authors make no
  16. representations about the suitability of this software for any purpose. It
  17. is provided "as is" without express or implied warranty.
  18. THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  19. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  20. EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  21. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  22. DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  23. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  24. PERFORMANCE OF THIS SOFTWARE.
  25. --------------------------------------------------------------------------------
  26. fontconfig/fc-case/CaseFolding.txt
  27. © 2019 Unicode®, Inc.
  28. Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
  29. For terms of use, see http://www.unicode.org/terms_of_use.html
  30. --------------------------------------------------------------------------------
  31. fontconfig/src/fcatomic.h
  32. /*
  33. * Mutex operations. Originally copied from HarfBuzz.
  34. *
  35. * Copyright © 2007 Chris Wilson
  36. * Copyright © 2009,2010 Red Hat, Inc.
  37. * Copyright © 2011,2012,2013 Google, Inc.
  38. *
  39. * Permission is hereby granted, without written agreement and without
  40. * license or royalty fees, to use, copy, modify, and distribute this
  41. * software and its documentation for any purpose, provided that the
  42. * above copyright notice and the following two paragraphs appear in
  43. * all copies of this software.
  44. *
  45. * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
  46. * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
  47. * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
  48. * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  49. * DAMAGE.
  50. *
  51. * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
  52. * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  53. * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
  54. * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
  55. * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  56. *
  57. * Contributor(s):
  58. * Chris Wilson <chris@chris-wilson.co.uk>
  59. * Red Hat Author(s): Behdad Esfahbod
  60. * Google Author(s): Behdad Esfahbod
  61. */
  62. --------------------------------------------------------------------------------
  63. fontconfig/src/fcfoundry.h
  64. /*
  65. Copyright © 2002-2003 by Juliusz Chroboczek
  66. Permission is hereby granted, free of charge, to any person obtaining a copy
  67. of this software and associated documentation files (the "Software"), to deal
  68. in the Software without restriction, including without limitation the rights
  69. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  70. copies of the Software, and to permit persons to whom the Software is
  71. furnished to do so, subject to the following conditions:
  72. The above copyright notice and this permission notice shall be included in
  73. all copies or substantial portions of the Software.
  74. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  75. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  76. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  77. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  78. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  79. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  80. THE SOFTWARE.
  81. */
  82. --------------------------------------------------------------------------------
  83. fontconfig/src/fcmd5.h
  84. /*
  85. * This code implements the MD5 message-digest algorithm.
  86. * The algorithm is due to Ron Rivest. This code was
  87. * written by Colin Plumb in 1993, no copyright is claimed.
  88. * This code is in the public domain; do with it what you wish.
  89. *
  90. * Equivalent code is available from RSA Data Security, Inc.
  91. * This code has been tested against that, and is equivalent,
  92. * except that you don't need to include two pages of legalese
  93. * with every copy.
  94. *
  95. * To compute the message digest of a chunk of bytes, declare an
  96. * MD5Context structure, pass it to MD5Init, call MD5Update as
  97. * needed on buffers full of bytes, and then call MD5Final, which
  98. * will fill a supplied 16-byte array with the digest.
  99. */
  100. --------------------------------------------------------------------------------
  101. fontconfig/src/fcmutex.h
  102. /*
  103. * Atomic int and pointer operations. Originally copied from HarfBuzz.
  104. *
  105. * Copyright © 2007 Chris Wilson
  106. * Copyright © 2009,2010 Red Hat, Inc.
  107. * Copyright © 2011,2012,2013 Google, Inc.
  108. *
  109. * Permission is hereby granted, without written agreement and without
  110. * license or royalty fees, to use, copy, modify, and distribute this
  111. * software and its documentation for any purpose, provided that the
  112. * above copyright notice and the following two paragraphs appear in
  113. * all copies of this software.
  114. *
  115. * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
  116. * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
  117. * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
  118. * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  119. * DAMAGE.
  120. *
  121. * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
  122. * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  123. * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
  124. * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
  125. * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  126. *
  127. * Contributor(s):
  128. * Chris Wilson <chris@chris-wilson.co.uk>
  129. * Red Hat Author(s): Behdad Esfahbod
  130. * Google Author(s): Behdad Esfahbod
  131. */
  132. --------------------------------------------------------------------------------
  133. fontconfig/src/ftglue.[ch]
  134. /* ftglue.c: Glue code for compiling the OpenType code from
  135. * FreeType 1 using only the public API of FreeType 2
  136. *
  137. * By David Turner, The FreeType Project (www.freetype.org)
  138. *
  139. * This code is explicitely put in the public domain
  140. *
  141. * ==========================================================================
  142. *
  143. * the OpenType parser codes was originally written as an extension to
  144. * FreeType 1.x. As such, its source code was embedded within the library,
  145. * and used many internal FreeType functions to deal with memory and
  146. * stream i/o.
  147. *
  148. * When it was 'salvaged' for Pango and Qt, the code was "ported" to FreeType 2,
  149. * which basically means that some macro tricks were performed in order to
  150. * directly access FT2 _internal_ functions.
  151. *
  152. * these functions were never part of FT2 public API, and _did_ change between
  153. * various releases. This created chaos for many users: when they upgraded the
  154. * FreeType library on their system, they couldn't run Gnome anymore since
  155. * Pango refused to link.
  156. *
  157. * Very fortunately, it's possible to completely avoid this problem because
  158. * the FT_StreamRec and FT_MemoryRec structure types, which describe how
  159. * memory and stream implementations interface with the rest of the font
  160. * library, have always been part of the public API, and never changed.
  161. *
  162. * What we do thus is re-implement, within the OpenType parser, the few
  163. * functions that depend on them. This only adds one or two kilobytes of
  164. * code, and ensures that the parser can work with _any_ version
  165. * of FreeType installed on your system. How sweet... !
  166. *
  167. * Note that we assume that Pango doesn't use any other internal functions
  168. * from FreeType. It used to in old versions, but this should no longer
  169. * be the case. (crossing my fingers).
  170. *
  171. * - David Turner
  172. * - The FreeType Project (www.freetype.org)
  173. *
  174. * PS: This "glue" code is explicitely put in the public domain
  175. */