LICENSE 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. Copyright (c) 2006, Google Inc.
  2. All rights reserved.
  3. Redistribution and use in source and binary forms, with or without
  4. modification, are permitted provided that the following conditions are
  5. met:
  6. * Redistributions of source code must retain the above copyright
  7. notice, this list of conditions and the following disclaimer.
  8. * Redistributions in binary form must reproduce the above
  9. copyright notice, this list of conditions and the following disclaimer
  10. in the documentation and/or other materials provided with the
  11. distribution.
  12. * Neither the name of Google Inc. nor the names of its
  13. contributors may be used to endorse or promote products derived from
  14. this software without specific prior written permission.
  15. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  16. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  17. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  18. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  19. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  20. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  21. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  22. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  23. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  25. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. --------------------------------------------------------------------
  27. Copyright 2001-2004 Unicode, Inc.
  28. Disclaimer
  29. This source code is provided as is by Unicode, Inc. No claims are
  30. made as to fitness for any particular purpose. No warranties of any
  31. kind are expressed or implied. The recipient agrees to determine
  32. applicability of information provided. If this file has been
  33. purchased on magnetic or optical media from Unicode, Inc., the
  34. sole remedy for any claim will be exchange of defective media
  35. within 90 days of receipt.
  36. Limitations on Rights to Redistribute This Code
  37. Unicode, Inc. hereby grants the right to freely use the information
  38. supplied in this file in the creation of products supporting the
  39. Unicode Standard, and to make copies of this file in any form
  40. for internal or external distribution as long as this notice
  41. remains attached.
  42. --------------------------------------------------------------------
  43. libunwind - a platform-independent unwind library
  44. Copyright (C) 2008 Google, Inc
  45. Contributed by Paul Pluzhnikov <ppluzhnikov@google.com>
  46. Copyright (C) 2010 Konstantin Belousov <kib@freebsd.org>
  47. Permission is hereby granted, free of charge, to any person obtaining
  48. a copy of this software and associated documentation files (the
  49. "Software"), to deal in the Software without restriction, including
  50. without limitation the rights to use, copy, modify, merge, publish,
  51. distribute, sublicense, and/or sell copies of the Software, and to
  52. permit persons to whom the Software is furnished to do so, subject to
  53. the following conditions:
  54. The above copyright notice and this permission notice shall be
  55. included in all copies or substantial portions of the Software.
  56. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  57. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  58. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  59. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  60. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  61. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  62. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  63. --------------------------------------------------------------------
  64. Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
  65. @APPLE_LICENSE_HEADER_START@
  66. This file contains Original Code and/or Modifications of Original Code
  67. as defined in and that are subject to the Apple Public Source License
  68. Version 2.0 (the 'License'). You may not use this file except in
  69. compliance with the License. Please obtain a copy of the License at
  70. http://www.opensource.apple.com/apsl/ and read it before using this
  71. file.
  72. The Original Code and all software distributed under the License are
  73. distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  74. EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  75. INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
  76. FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
  77. Please see the License for the specific language governing rights and
  78. limitations under the License.
  79. @APPLE_LICENSE_HEADER_END@
  80. --------------------------------------------------------------------
  81. Copyright (c) 1989, 1993
  82. The Regents of the University of California. All rights reserved.
  83. Redistribution and use in source and binary forms, with or without
  84. modification, are permitted provided that the following conditions
  85. are met:
  86. 1. Redistributions of source code must retain the above copyright
  87. notice, this list of conditions and the following disclaimer.
  88. 2. Redistributions in binary form must reproduce the above copyright
  89. notice, this list of conditions and the following disclaimer in the
  90. documentation and/or other materials provided with the distribution.
  91. 3. All advertising materials mentioning features or use of this software
  92. must display the following acknowledgement:
  93. This product includes software developed by the University of
  94. California, Berkeley and its contributors.
  95. 4. Neither the name of the University nor the names of its contributors
  96. may be used to endorse or promote products derived from this software
  97. without specific prior written permission.
  98. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  99. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  100. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  101. ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  102. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  103. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  104. OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  105. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  106. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  107. OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  108. SUCH DAMAGE.