jdk/THIRD_PARTY_README
author lagergren
Tue, 14 Oct 2014 15:28:24 +0200
changeset 27102 c64b3468d51d
parent 24984 c95ced1327af
permissions -rw-r--r--
8012518: Reengineer Parser.java to make it play well with the copy-on-write IR. Summary: Remove the kludges introduced to make the parser work with the copy on write IR. Now everything is done bottom up, finshing node children completely before node parents. The repeated non-functional pattern 'node = node.setSomething(something);' is gone. Resulting code is much more readable, and extensible for future work. The parser is now also consistent with the rest of the stateless copy-on-write world in code generation. Reviewed-by: lagergren, attila, hannesw, shade Contributed-by: andreas.gabrielsson@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
DO NOT TRANSLATE OR LOCALIZE.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
     2
-----------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
     3
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
     4
%% This notice is provided with respect to ASM Bytecode Manipulation 
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
     5
Framework v5.0, which may be included with JRE 8, and JDK 8, and 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
     6
OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
     7
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
     8
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
     9
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    10
Copyright (c) 2000-2011 France Télécom
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
All rights reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
Redistribution and use in source and binary forms, with or without
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
modification, are permitted provided that the following conditions
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
are met:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
1. Redistributions of source code must retain the above copyright
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
   notice, this list of conditions and the following disclaimer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
2. Redistributions in binary form must reproduce the above copyright
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
   notice, this list of conditions and the following disclaimer in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
   documentation and/or other materials provided with the distribution.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
3. Neither the name of the copyright holders nor the names of its
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
   contributors may be used to endorse or promote products derived from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
   this software without specific prior written permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
THE POSSIBILITY OF SUCH DAMAGE.
2296
a536dae06f52 6695776: corba jscheme jar files in repository could be built from source
tbell
parents: 2
diff changeset
    39
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    40
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    41
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    42
--------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    43
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    44
%% This notice is provided with respect to BSDiff v4.3, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    45
included with JRE 8, JDK 8, and OpenJDK 8.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    46
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    47
--- begin of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    48
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    49
Copyright 2003-2005 Colin Percival
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    50
All rights reserved
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    51
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    52
Redistribution and use in source and binary forms, with or without
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    53
modification, are permitted providing that the following conditions
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    54
are met:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    55
1. Redistributions of source code must retain the above copyright
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    56
notice, this list of conditions and the following disclaimer.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    57
2. Redistributions in binary form must reproduce the above copyright
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    58
notice, this list of conditions and the following disclaimer in the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    59
documentation and/or other materials provided with the distribution.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    60
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    61
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    62
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    63
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    64
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    65
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    66
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    67
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    68
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    69
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    70
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    71
POSSIBILITY OF SUCH DAMAGE.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    72
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    73
--- end of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    74
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    75
-------------------------------------------------------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    76
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    77
%% This notice is provided with respect to CodeViewer 1.0, which may be
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
    78
included with JDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    79
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    80
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    81
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    82
Copyright 1999 by CoolServlets.com.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    83
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    84
Any errors or suggested improvements to this class can be reported as
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    85
instructed on CoolServlets.com. We hope you enjoy this program... your
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    86
comments will encourage further development!  This software is distributed
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    87
under the terms of the BSD License.  Redistribution and use in source and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    88
binary forms, with or without modification, are permitted provided that the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    89
following conditions are met:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    90
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    91
1. Redistributions of source code must retain the above copyright notice, this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    92
   list of conditions and the following disclaimer.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    93
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    94
2. Redistributions in binary form must reproduce the above copyright notice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    95
   this list of conditions and the following disclaimer in the documentation
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    96
   and/or other materials provided with the distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    97
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    98
Neither name of CoolServlets.com nor the names of its contributors may be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
    99
used to endorse or promote products derived from this software without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   100
specific prior written permission.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   101
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   102
THIS SOFTWARE IS PROVIDED BY COOLSERVLETS.COM AND CONTRIBUTORS ``AS IS'' AND
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   103
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   104
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   105
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   106
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   107
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   108
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   109
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   110
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   111
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   112
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   113
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   114
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   115
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   116
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   117
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   118
%% This notice is provided with respect to Cryptix AES 3.2.0, which may be
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   119
included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   120
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   121
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   122
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   123
Cryptix General License
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   124
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   125
Copyright (c) 1995-2005 The Cryptix Foundation Limited.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   126
All rights reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   127
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   128
Redistribution and use in source and binary forms, with or without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   129
modification, are permitted provided that the following conditions are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   130
met:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   131
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   132
  1. Redistributions of source code must retain the copyright notice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   133
     this list of conditions and the following disclaimer.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   134
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   135
  2. Redistributions in binary form must reproduce the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   136
     notice, this list of conditions and the following disclaimer in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   137
     the documentation and/or other materials provided with the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   138
     distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   139
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   140
THIS SOFTWARE IS PROVIDED BY THE CRYPTIX FOUNDATION LIMITED AND
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   141
CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   142
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   143
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   144
IN NO EVENT SHALL THE CRYPTIX FOUNDATION LIMITED OR CONTRIBUTORS BE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   145
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   146
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   147
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   148
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   149
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   150
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   151
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   152
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   153
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   154
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   155
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   156
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   157
%% This notice is provided with respect to CUP Parser Generator for 
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   158
Java 0.10k, which may be included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   159
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   160
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   161
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   162
Copyright 1996-1999 by Scott Hudson, Frank Flannery, C. Scott Ananian
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   163
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   164
Permission to use, copy, modify, and distribute this software and its
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   165
documentation for any purpose and without fee is hereby granted, provided
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   166
that the above copyright notice appear in all copies and that both the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   167
copyright notice and this permission notice and warranty disclaimer appear in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   168
supporting documentation, and that the names of the authors or their
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   169
employers not be used in advertising or publicity pertaining to distribution of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   170
the software without specific, written prior permission.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   171
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   172
The authors and their employers disclaim all warranties with regard to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   173
this software, including all implied warranties of merchantability and fitness.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   174
In no event shall the authors or their employers be liable for any special,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   175
indirect or consequential damages or any damages whatsoever resulting from
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   176
loss of use, data or profits, whether in an action of contract, negligence or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   177
other tortious action, arising out of or in connection with the use or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   178
performance of this software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   179
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   180
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   181
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   182
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   183
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   184
%% This notice is provided with respect to Document Object Model (DOM) Level 2
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   185
& 3, which may be included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   186
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   187
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   188
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   189
W3C SOFTWARE NOTICE AND LICENSE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   190
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   191
http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   192
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   193
This work (and included software, documentation such as READMEs, or other
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   194
related items) is being provided by the copyright holders under the following
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   195
license. By obtaining, using and/or copying this work, you (the licensee)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   196
agree that you have read, understood, and will comply with the following terms
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   197
and conditions.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   198
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   199
Permission to copy, modify, and distribute this software and its
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   200
documentation, with or without modification, for any purpose and without fee
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   201
or royalty is hereby granted, provided that you include the following on ALL
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   202
copies of the software and documentation or portions thereof, including
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   203
modifications:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   204
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   205
   1.The full text of this NOTICE in a location viewable to users of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   206
   redistributed or derivative work.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   207
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   208
   2.Any pre-existing intellectual property disclaimers, notices, or terms and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   209
   conditions. If none exist, the W3C Software Short Notice should be included
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   210
   (hypertext is preferred, text is permitted) within the body of any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   211
   redistributed or derivative code.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   212
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   213
   3.Notice of any changes or modifications to the files, including the date
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   214
   changes were made. (We recommend you provide URIs to the location from
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   215
   which the code is derived.)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   216
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   217
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   218
MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   219
LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   220
PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   221
THIRD PARTY PATENTS,COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   222
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   223
COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   224
OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   225
DOCUMENTATION.  The name and trademarks of copyright holders may NOT be used
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   226
in advertising or publicity pertaining to the software without specific,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   227
written prior permission. Title to copyright in this software and any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   228
associated documentation will at all times remain with copyright holders.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   229
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   230
____________________________________
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   231
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   232
This formulation of W3C's notice and license became active on December 31
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   233
2002. This version removes the copyright ownership notice such that this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   234
license can be used with materials other than those owned by the W3C, reflects
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   235
that ERCIM is now a host of the W3C, includes references to this specific
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   236
dated version of the license, and removes the ambiguous grant of "use".
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   237
Otherwise, this version is the same as the previous version and is written so
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   238
as to preserve the Free Software Foundation's assessment of GPL compatibility
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   239
and OSI's certification under the Open Source Definition. Please see our
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   240
Copyright FAQ for common questions about using materials from our site,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   241
including specific terms and conditions for packages like libwww, Amaya, and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   242
Jigsaw. Other questions about this notice can be directed to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   243
site-policy@w3.org.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   244
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   245
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   246
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   247
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   248
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   249
%% This notice is provided with respect to Dynalink v0.5, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   250
included with JRE 8, JDK 8, and OpenJDK 8.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   251
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   252
--- begin of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   253
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   254
Copyright (c) 2009-2013, Attila Szegedi
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   255
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   256
All rights reserved.Redistribution and use in source and binary forms, with or
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   257
without modification, are permitted provided that the following conditions are
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   258
met:* Redistributions of source code must retain the above copyright notice,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   259
this list of conditions and the following disclaimer.  * Redistributions in
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   260
binary form must reproduce the above copyright notice,   this list of
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   261
conditions and the following disclaimer in the documentation  and/or other
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   262
materials provided with the distribution.  * Neither the name of Attila
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   263
Szegedi nor the names of its contributors may be used to endorse or promote
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   264
products derived from this software without specific prior written permission.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   265
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   266
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"AND
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   267
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   268
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   269
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   270
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   271
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   272
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   273
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   274
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   275
OF THIS SOFTWARE, EVEN IF ADVISED OF THEPOSSIBILITY OF SUCH DAMAGE.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   276
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   277
--- end of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   278
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   279
-------------------------------------------------------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   280
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   281
%% This notice is provided with respect to Elliptic Curve Cryptography, which 
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   282
may be included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   283
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   284
You are receiving a copy of the Elliptic Curve Cryptography library in source
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   285
form with the JDK 8 and OpenJDK 8 source distributions, and as object code in
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   286
the JRE 8 & JDK 8 runtimes.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   287
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   288
In the case of the JRE 8 & JDK 8 runtimes, the terms of the Oracle license do
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   289
NOT apply to the Elliptic Curve Cryptography library; it is licensed under the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   290
following license, separately from Oracle's JDK & JRE.  If you do not wish to
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   291
install the Elliptic Curve Cryptography library, you may delete the library
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   292
named libsunec.so (on Solaris and Linux systems) or sunec.dll (on Windows
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   293
systems) from the JRE bin directory reserved for native libraries.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   294
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   295
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   296
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   297
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   298
                  GNU LESSER GENERAL PUBLIC LICENSE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   299
                       Version 2.1, February 1999
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   300
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   301
 Copyright (C) 1991, 1999 Free Software Foundation, Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   302
 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   303
 Everyone is permitted to copy and distribute verbatim copies
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   304
 of this license document, but changing it is not allowed.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   305
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   306
[This is the first released version of the Lesser GPL.  It also counts
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   307
 as the successor of the GNU Library Public License, version 2, hence
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   308
 the version number 2.1.]
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   309
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   310
                            Preamble
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   311
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   312
  The licenses for most software are designed to take away your
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   313
freedom to share and change it.  By contrast, the GNU General Public
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   314
Licenses are intended to guarantee your freedom to share and change
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   315
free software--to make sure the software is free for all its users.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   316
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   317
  This license, the Lesser General Public License, applies to some
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   318
specially designated software packages--typically libraries--of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   319
Free Software Foundation and other authors who decide to use it.  You
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   320
can use it too, but we suggest you first think carefully about whether
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   321
this license or the ordinary General Public License is the better
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   322
strategy to use in any particular case, based on the explanations below.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   323
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   324
  When we speak of free software, we are referring to freedom of use,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   325
not price.  Our General Public Licenses are designed to make sure that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   326
you have the freedom to distribute copies of free software (and charge
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   327
for this service if you wish); that you receive source code or can get
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   328
it if you want it; that you can change the software and use pieces of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   329
it in new free programs; and that you are informed that you can do
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   330
these things.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   331
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   332
  To protect your rights, we need to make restrictions that forbid
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   333
distributors to deny you these rights or to ask you to surrender these
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   334
rights.  These restrictions translate to certain responsibilities for
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   335
you if you distribute copies of the library or if you modify it.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   336
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   337
  For example, if you distribute copies of the library, whether gratis
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   338
or for a fee, you must give the recipients all the rights that we gave
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   339
you.  You must make sure that they, too, receive or can get the source
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   340
code.  If you link other code with the library, you must provide
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   341
complete object files to the recipients, so that they can relink them
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   342
with the library after making changes to the library and recompiling
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   343
it.  And you must show them these terms so they know their rights.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   344
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   345
  We protect your rights with a two-step method: (1) we copyright the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   346
library, and (2) we offer you this license, which gives you legal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   347
permission to copy, distribute and/or modify the library.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   348
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   349
  To protect each distributor, we want to make it very clear that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   350
there is no warranty for the free library.  Also, if the library is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   351
modified by someone else and passed on, the recipients should know
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   352
that what they have is not the original version, so that the original
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   353
author's reputation will not be affected by problems that might be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   354
introduced by others.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   355

9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   356
  Finally, software patents pose a constant threat to the existence of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   357
any free program.  We wish to make sure that a company cannot
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   358
effectively restrict the users of a free program by obtaining a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   359
restrictive license from a patent holder.  Therefore, we insist that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   360
any patent license obtained for a version of the library must be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   361
consistent with the full freedom of use specified in this license.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   362
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   363
  Most GNU software, including some libraries, is covered by the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   364
ordinary GNU General Public License.  This license, the GNU Lesser
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   365
General Public License, applies to certain designated libraries, and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   366
is quite different from the ordinary General Public License.  We use
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   367
this license for certain libraries in order to permit linking those
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   368
libraries into non-free programs.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   369
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   370
  When a program is linked with a library, whether statically or using
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   371
a shared library, the combination of the two is legally speaking a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   372
combined work, a derivative of the original library.  The ordinary
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   373
General Public License therefore permits such linking only if the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   374
entire combination fits its criteria of freedom.  The Lesser General
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   375
Public License permits more lax criteria for linking other code with
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   376
the library.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   377
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   378
  We call this license the "Lesser" General Public License because it
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   379
does Less to protect the user's freedom than the ordinary General
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   380
Public License.  It also provides other free software developers Less
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   381
of an advantage over competing non-free programs.  These disadvantages
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   382
are the reason we use the ordinary General Public License for many
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   383
libraries.  However, the Lesser license provides advantages in certain
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   384
special circumstances.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   385
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   386
  For example, on rare occasions, there may be a special need to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   387
encourage the widest possible use of a certain library, so that it becomes
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   388
a de-facto standard.  To achieve this, non-free programs must be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   389
allowed to use the library.  A more frequent case is that a free
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   390
library does the same job as widely used non-free libraries.  In this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   391
case, there is little to gain by limiting the free library to free
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   392
software only, so we use the Lesser General Public License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   393
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   394
  In other cases, permission to use a particular library in non-free
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   395
programs enables a greater number of people to use a large body of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   396
free software.  For example, permission to use the GNU C Library in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   397
non-free programs enables many more people to use the whole GNU
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   398
operating system, as well as its variant, the GNU/Linux operating
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   399
system.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   400
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   401
  Although the Lesser General Public License is Less protective of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   402
users' freedom, it does ensure that the user of a program that is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   403
linked with the Library has the freedom and the wherewithal to run
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   404
that program using a modified version of the Library.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   405
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   406
  The precise terms and conditions for copying, distribution and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   407
modification follow.  Pay close attention to the difference between a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   408
"work based on the library" and a "work that uses the library".  The
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   409
former contains code derived from the library, whereas the latter must
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   410
be combined with the library in order to run.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   411

9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   412
                  GNU LESSER GENERAL PUBLIC LICENSE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   413
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   414
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   415
  0. This License Agreement applies to any software library or other
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   416
program which contains a notice placed by the copyright holder or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   417
other authorized party saying it may be distributed under the terms of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   418
this Lesser General Public License (also called "this License").
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   419
Each licensee is addressed as "you".
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   420
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   421
  A "library" means a collection of software functions and/or data
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   422
prepared so as to be conveniently linked with application programs
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   423
(which use some of those functions and data) to form executables.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   424
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   425
  The "Library", below, refers to any such software library or work
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   426
which has been distributed under these terms.  A "work based on the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   427
Library" means either the Library or any derivative work under
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   428
copyright law: that is to say, a work containing the Library or a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   429
portion of it, either verbatim or with modifications and/or translated
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   430
straightforwardly into another language.  (Hereinafter, translation is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   431
included without limitation in the term "modification".)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   432
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   433
  "Source code" for a work means the preferred form of the work for
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   434
making modifications to it.  For a library, complete source code means
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   435
all the source code for all modules it contains, plus any associated
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   436
interface definition files, plus the scripts used to control compilation
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   437
and installation of the library.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   438
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   439
  Activities other than copying, distribution and modification are not
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   440
covered by this License; they are outside its scope.  The act of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   441
running a program using the Library is not restricted, and output from
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   442
such a program is covered only if its contents constitute a work based
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   443
on the Library (independent of the use of the Library in a tool for
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   444
writing it).  Whether that is true depends on what the Library does
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   445
and what the program that uses the Library does.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   446
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   447
  1. You may copy and distribute verbatim copies of the Library's
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   448
complete source code as you receive it, in any medium, provided that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   449
you conspicuously and appropriately publish on each copy an
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   450
appropriate copyright notice and disclaimer of warranty; keep intact
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   451
all the notices that refer to this License and to the absence of any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   452
warranty; and distribute a copy of this License along with the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   453
Library.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   454
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   455
  You may charge a fee for the physical act of transferring a copy,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   456
and you may at your option offer warranty protection in exchange for a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   457
fee.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   458

9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   459
  2. You may modify your copy or copies of the Library or any portion
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   460
of it, thus forming a work based on the Library, and copy and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   461
distribute such modifications or work under the terms of Section 1
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   462
above, provided that you also meet all of these conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   463
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   464
    a) The modified work must itself be a software library.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   465
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   466
    b) You must cause the files modified to carry prominent notices
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   467
    stating that you changed the files and the date of any change.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   468
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   469
    c) You must cause the whole of the work to be licensed at no
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   470
    charge to all third parties under the terms of this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   471
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   472
    d) If a facility in the modified Library refers to a function or a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   473
    table of data to be supplied by an application program that uses
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   474
    the facility, other than as an argument passed when the facility
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   475
    is invoked, then you must make a good faith effort to ensure that,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   476
    in the event an application does not supply such function or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   477
    table, the facility still operates, and performs whatever part of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   478
    its purpose remains meaningful.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   479
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   480
    (For example, a function in a library to compute square roots has
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   481
    a purpose that is entirely well-defined independent of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   482
    application.  Therefore, Subsection 2d requires that any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   483
    application-supplied function or table used by this function must
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   484
    be optional: if the application does not supply it, the square
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   485
    root function must still compute square roots.)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   486
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   487
These requirements apply to the modified work as a whole.  If
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   488
identifiable sections of that work are not derived from the Library,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   489
and can be reasonably considered independent and separate works in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   490
themselves, then this License, and its terms, do not apply to those
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   491
sections when you distribute them as separate works.  But when you
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   492
distribute the same sections as part of a whole which is a work based
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   493
on the Library, the distribution of the whole must be on the terms of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   494
this License, whose permissions for other licensees extend to the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   495
entire whole, and thus to each and every part regardless of who wrote
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   496
it.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   497
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   498
Thus, it is not the intent of this section to claim rights or contest
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   499
your rights to work written entirely by you; rather, the intent is to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   500
exercise the right to control the distribution of derivative or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   501
collective works based on the Library.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   502
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   503
In addition, mere aggregation of another work not based on the Library
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   504
with the Library (or with a work based on the Library) on a volume of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   505
a storage or distribution medium does not bring the other work under
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   506
the scope of this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   507
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   508
  3. You may opt to apply the terms of the ordinary GNU General Public
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   509
License instead of this License to a given copy of the Library.  To do
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   510
this, you must alter all the notices that refer to this License, so
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   511
that they refer to the ordinary GNU General Public License, version 2,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   512
instead of to this License.  (If a newer version than version 2 of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   513
ordinary GNU General Public License has appeared, then you can specify
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   514
that version instead if you wish.)  Do not make any other change in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   515
these notices.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   516

9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   517
  Once this change is made in a given copy, it is irreversible for
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   518
that copy, so the ordinary GNU General Public License applies to all
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   519
subsequent copies and derivative works made from that copy.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   520
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   521
  This option is useful when you wish to copy part of the code of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   522
the Library into a program that is not a library.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   523
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   524
  4. You may copy and distribute the Library (or a portion or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   525
derivative of it, under Section 2) in object code or executable form
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   526
under the terms of Sections 1 and 2 above provided that you accompany
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   527
it with the complete corresponding machine-readable source code, which
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   528
must be distributed under the terms of Sections 1 and 2 above on a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   529
medium customarily used for software interchange.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   530
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   531
  If distribution of object code is made by offering access to copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   532
from a designated place, then offering equivalent access to copy the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   533
source code from the same place satisfies the requirement to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   534
distribute the source code, even though third parties are not
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   535
compelled to copy the source along with the object code.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   536
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   537
  5. A program that contains no derivative of any portion of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   538
Library, but is designed to work with the Library by being compiled or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   539
linked with it, is called a "work that uses the Library".  Such a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   540
work, in isolation, is not a derivative work of the Library, and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   541
therefore falls outside the scope of this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   542
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   543
  However, linking a "work that uses the Library" with the Library
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   544
creates an executable that is a derivative of the Library (because it
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   545
contains portions of the Library), rather than a "work that uses the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   546
library".  The executable is therefore covered by this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   547
Section 6 states terms for distribution of such executables.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   548
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   549
  When a "work that uses the Library" uses material from a header file
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   550
that is part of the Library, the object code for the work may be a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   551
derivative work of the Library even though the source code is not.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   552
Whether this is true is especially significant if the work can be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   553
linked without the Library, or if the work is itself a library.  The
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   554
threshold for this to be true is not precisely defined by law.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   555
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   556
  If such an object file uses only numerical parameters, data
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   557
structure layouts and accessors, and small macros and small inline
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   558
functions (ten lines or less in length), then the use of the object
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   559
file is unrestricted, regardless of whether it is legally a derivative
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   560
work.  (Executables containing this object code plus portions of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   561
Library will still fall under Section 6.)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   562
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   563
  Otherwise, if the work is a derivative of the Library, you may
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   564
distribute the object code for the work under the terms of Section 6.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   565
Any executables containing that work also fall under Section 6,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   566
whether or not they are linked directly with the Library itself.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   567

9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   568
  6. As an exception to the Sections above, you may also combine or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   569
link a "work that uses the Library" with the Library to produce a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   570
work containing portions of the Library, and distribute that work
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   571
under terms of your choice, provided that the terms permit
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   572
modification of the work for the customer's own use and reverse
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   573
engineering for debugging such modifications.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   574
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   575
  You must give prominent notice with each copy of the work that the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   576
Library is used in it and that the Library and its use are covered by
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   577
this License.  You must supply a copy of this License.  If the work
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   578
during execution displays copyright notices, you must include the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   579
copyright notice for the Library among them, as well as a reference
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   580
directing the user to the copy of this License.  Also, you must do one
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   581
of these things:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   582
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   583
    a) Accompany the work with the complete corresponding
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   584
    machine-readable source code for the Library including whatever
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   585
    changes were used in the work (which must be distributed under
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   586
    Sections 1 and 2 above); and, if the work is an executable linked
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   587
    with the Library, with the complete machine-readable "work that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   588
    uses the Library", as object code and/or source code, so that the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   589
    user can modify the Library and then relink to produce a modified
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   590
    executable containing the modified Library.  (It is understood
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   591
    that the user who changes the contents of definitions files in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   592
    Library will not necessarily be able to recompile the application
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   593
    to use the modified definitions.)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   594
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   595
    b) Use a suitable shared library mechanism for linking with the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   596
    Library.  A suitable mechanism is one that (1) uses at run time a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   597
    copy of the library already present on the user's computer system,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   598
    rather than copying library functions into the executable, and (2)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   599
    will operate properly with a modified version of the library, if
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   600
    the user installs one, as long as the modified version is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   601
    interface-compatible with the version that the work was made with.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   602
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   603
    c) Accompany the work with a written offer, valid for at
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   604
    least three years, to give the same user the materials
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   605
    specified in Subsection 6a, above, for a charge no more
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   606
    than the cost of performing this distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   607
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   608
    d) If distribution of the work is made by offering access to copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   609
    from a designated place, offer equivalent access to copy the above
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   610
    specified materials from the same place.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   611
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   612
    e) Verify that the user has already received a copy of these
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   613
    materials or that you have already sent this user a copy.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   614
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   615
  For an executable, the required form of the "work that uses the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   616
Library" must include any data and utility programs needed for
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   617
reproducing the executable from it.  However, as a special exception,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   618
the materials to be distributed need not include anything that is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   619
normally distributed (in either source or binary form) with the major
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   620
components (compiler, kernel, and so on) of the operating system on
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   621
which the executable runs, unless that component itself accompanies
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   622
the executable.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   623
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   624
  It may happen that this requirement contradicts the license
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   625
restrictions of other proprietary libraries that do not normally
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   626
accompany the operating system.  Such a contradiction means you cannot
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   627
use both them and the Library together in an executable that you
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   628
distribute.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   629

9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   630
  7. You may place library facilities that are a work based on the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   631
Library side-by-side in a single library together with other library
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   632
facilities not covered by this License, and distribute such a combined
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   633
library, provided that the separate distribution of the work based on
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   634
the Library and of the other library facilities is otherwise
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   635
permitted, and provided that you do these two things:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   636
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   637
    a) Accompany the combined library with a copy of the same work
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   638
    based on the Library, uncombined with any other library
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   639
    facilities.  This must be distributed under the terms of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   640
    Sections above.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   641
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   642
    b) Give prominent notice with the combined library of the fact
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   643
    that part of it is a work based on the Library, and explaining
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   644
    where to find the accompanying uncombined form of the same work.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   645
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   646
  8. You may not copy, modify, sublicense, link with, or distribute
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   647
the Library except as expressly provided under this License.  Any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   648
attempt otherwise to copy, modify, sublicense, link with, or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   649
distribute the Library is void, and will automatically terminate your
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   650
rights under this License.  However, parties who have received copies,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   651
or rights, from you under this License will not have their licenses
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   652
terminated so long as such parties remain in full compliance.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   653
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   654
  9. You are not required to accept this License, since you have not
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   655
signed it.  However, nothing else grants you permission to modify or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   656
distribute the Library or its derivative works.  These actions are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   657
prohibited by law if you do not accept this License.  Therefore, by
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   658
modifying or distributing the Library (or any work based on the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   659
Library), you indicate your acceptance of this License to do so, and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   660
all its terms and conditions for copying, distributing or modifying
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   661
the Library or works based on it.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   662
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   663
  10. Each time you redistribute the Library (or any work based on the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   664
Library), the recipient automatically receives a license from the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   665
original licensor to copy, distribute, link with or modify the Library
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   666
subject to these terms and conditions.  You may not impose any further
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   667
restrictions on the recipients' exercise of the rights granted herein.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   668
You are not responsible for enforcing compliance by third parties with
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   669
this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   670

9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   671
  11. If, as a consequence of a court judgment or allegation of patent
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   672
infringement or for any other reason (not limited to patent issues),
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   673
conditions are imposed on you (whether by court order, agreement or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   674
otherwise) that contradict the conditions of this License, they do not
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   675
excuse you from the conditions of this License.  If you cannot
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   676
distribute so as to satisfy simultaneously your obligations under this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   677
License and any other pertinent obligations, then as a consequence you
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   678
may not distribute the Library at all.  For example, if a patent
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   679
license would not permit royalty-free redistribution of the Library by
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   680
all those who receive copies directly or indirectly through you, then
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   681
the only way you could satisfy both it and this License would be to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   682
refrain entirely from distribution of the Library.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   683
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   684
If any portion of this section is held invalid or unenforceable under any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   685
particular circumstance, the balance of the section is intended to apply,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   686
and the section as a whole is intended to apply in other circumstances.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   687
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   688
It is not the purpose of this section to induce you to infringe any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   689
patents or other property right claims or to contest validity of any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   690
such claims; this section has the sole purpose of protecting the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   691
integrity of the free software distribution system which is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   692
implemented by public license practices.  Many people have made
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   693
generous contributions to the wide range of software distributed
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   694
through that system in reliance on consistent application of that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   695
system; it is up to the author/donor to decide if he or she is willing
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   696
to distribute software through any other system and a licensee cannot
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   697
impose that choice.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   698
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   699
This section is intended to make thoroughly clear what is believed to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   700
be a consequence of the rest of this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   701
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   702
  12. If the distribution and/or use of the Library is restricted in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   703
certain countries either by patents or by copyrighted interfaces, the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   704
original copyright holder who places the Library under this License may add
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   705
an explicit geographical distribution limitation excluding those countries,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   706
so that distribution is permitted only in or among countries not thus
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   707
excluded.  In such case, this License incorporates the limitation as if
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   708
written in the body of this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   709
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   710
  13. The Free Software Foundation may publish revised and/or new
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   711
versions of the Lesser General Public License from time to time.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   712
Such new versions will be similar in spirit to the present version,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   713
but may differ in detail to address new problems or concerns.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   714
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   715
Each version is given a distinguishing version number.  If the Library
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   716
specifies a version number of this License which applies to it and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   717
"any later version", you have the option of following the terms and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   718
conditions either of that version or of any later version published by
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   719
the Free Software Foundation.  If the Library does not specify a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   720
license version number, you may choose any version ever published by
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   721
the Free Software Foundation.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   722

9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   723
  14. If you wish to incorporate parts of the Library into other free
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   724
programs whose distribution conditions are incompatible with these,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   725
write to the author to ask for permission.  For software which is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   726
copyrighted by the Free Software Foundation, write to the Free
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   727
Software Foundation; we sometimes make exceptions for this.  Our
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   728
decision will be guided by the two goals of preserving the free status
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   729
of all derivatives of our free software and of promoting the sharing
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   730
and reuse of software generally.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   731
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   732
                            NO WARRANTY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   733
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   734
  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   735
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   736
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   737
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   738
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   739
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   740
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   741
LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   742
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   743
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   744
  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   745
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   746
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   747
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   748
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   749
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   750
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   751
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   752
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   753
DAMAGES.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   754
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   755
                     END OF TERMS AND CONDITIONS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   756

9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   757
           How to Apply These Terms to Your New Libraries
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   758
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   759
  If you develop a new library, and you want it to be of the greatest
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   760
possible use to the public, we recommend making it free software that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   761
everyone can redistribute and change.  You can do so by permitting
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   762
redistribution under these terms (or, alternatively, under the terms of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   763
ordinary General Public License).
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   764
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   765
  To apply these terms, attach the following notices to the library.  It is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   766
safest to attach them to the start of each source file to most effectively
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   767
convey the exclusion of warranty; and each file should have at least the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   768
"copyright" line and a pointer to where the full notice is found.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   769
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   770
    <one line to give the library's name and a brief idea of what it does.>
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   771
    Copyright (C) <year>  <name of author>
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   772
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   773
    This library is free software; you can redistribute it and/or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   774
    modify it under the terms of the GNU Lesser General Public
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   775
    License as published by the Free Software Foundation; either
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   776
    version 2.1 of the License, or (at your option) any later version.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   777
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   778
    This library is distributed in the hope that it will be useful,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   779
    but WITHOUT ANY WARRANTY; without even the implied warranty of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   780
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   781
    Lesser General Public License for more details.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   782
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   783
    You should have received a copy of the GNU Lesser General Public
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   784
    License along with this library; if not, write to the Free Software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   785
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   786
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   787
Also add information on how to contact you by electronic and paper mail.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   788
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   789
You should also get your employer (if you work as a programmer) or your
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   790
school, if any, to sign a "copyright disclaimer" for the library, if
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   791
necessary.  Here is a sample; alter the names:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   792
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   793
  Yoyodyne, Inc., hereby disclaims all copyright interest in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   794
  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   795
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   796
  <signature of Ty Coon>, 1 April 1990
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   797
  Ty Coon, President of Vice
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   798
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   799
That's all there is to it!
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   800
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   801
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   802
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   803
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   804
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   805
%% This notice is provided with respect to  ECMAScript Language
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   806
Specification ECMA-262 Edition 5.1 which may be included with 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   807
JRE 8, JDK 8, and OpenJDK 8.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   808
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   809
--- begin of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   810
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   811
Copyright notice
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   812
Copyright © 2011 Ecma International
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   813
Ecma International
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   814
Rue du Rhone 114
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   815
CH-1204 Geneva
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   816
Tel: +41 22 849 6000
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   817
Fax: +41 22 849 6001
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   818
Web: http://www.ecma-international.org
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   819
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   820
This document and possible translations of it may be copied and furnished to
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   821
others, and derivative works that comment on or otherwise explain it or assist
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   822
in its implementation may be prepared, copied, published, and distributed, in
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   823
whole or in part, without restriction of any kind, provided that the above
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   824
copyright notice and this section are included on all such copies and derivative
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   825
works. However, this document itself may not be modified in any way, including
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   826
by removing the copyright notice or references to Ecma International, except as
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   827
needed for the purpose of developing any document or deliverable produced by
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   828
Ecma International (in which case the rules applied to copyrights must be
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   829
followed) or as required to translate it into languages other than English. The
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   830
limited permissions granted above are perpetual and will not be revoked by Ecma
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   831
International or its successors or assigns. This document and the information
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   832
contained herein is provided on an "AS IS" basis and ECMA INTERNATIONAL
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   833
DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   834
WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   835
RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   836
PURPOSE." Software License
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   837
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   838
All Software contained in this document ("Software)" is protected by copyright
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   839
and is being made available under the "BSD License", included below. This
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   840
Software may be subject to third party rights (rights from parties other than
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   841
Ecma International), including patent rights, and no licenses under such third
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   842
party rights are granted under this license even if the third party concerned is
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   843
a member of Ecma International. SEE THE ECMA CODE OF CONDUCT IN PATENT MATTERS
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   844
AVAILABLE AT http://www.ecma-international.org/memento/codeofconduct.htm FOR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   845
INFORMATION REGARDING THE LICENSING OF PATENT CLAIMS THAT ARE REQUIRED TO
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   846
IMPLEMENT ECMA INTERNATIONAL STANDARDS*. Redistribution and use in source and
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   847
binary forms, with or without modification, are permitted provided that the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   848
following conditions are met:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   849
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   850
1. Redistributions of source code must retain the above copyright notice, this
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   851
list of conditions and the following disclaimer.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   852
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   853
2. Redistributions in binary form must reproduce the above copyright notice,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   854
this list of conditions and the following disclaimer in the documentation and/or
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   855
other materials provided with the distribution.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   856
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   857
3. Neither the name of the authors nor Ecma International may be used to endorse
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   858
or promote products derived from this software without specific prior written
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   859
permission.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   860
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   861
THIS SOFTWARE IS PROVIDED BY THE ECMA INTERNATIONAL "AS IS" AND ANY EXPRESS OR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   862
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   863
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   864
SHALL ECMA INTERNATIONAL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   865
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   866
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   867
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   868
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   869
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   870
OF SUCH DAMAGE.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   871
--- end of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   872
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   873
%% This notice is provided with respect to Dynalink library which is included
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   874
with the Nashorn technology.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   875
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   876
--- begin of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   877
Copyright (c) 2009-2013, Attila Szegedi
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   878
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   879
Redistribution and use in source and binary forms, with or without
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   880
modification, are permitted provided that the following conditions are
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   881
met:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   882
* Redistributions of source code must retain the above copyright
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   883
  notice, this list of conditions and the following disclaimer.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   884
* Redistributions in binary form must reproduce the above copyright
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   885
  notice, this list of conditions and the following disclaimer in the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   886
  documentation and/or other materials provided with the distribution.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   887
* Neither the name of the copyright holder nor the names of
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   888
  contributors may be used to endorse or promote products derived from
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   889
  this software without specific prior written permission.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   890
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   891
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   892
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   893
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   894
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   895
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   896
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   897
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   898
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   899
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   900
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   901
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   902
--- end of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   903
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   904
%% This notice is provided with respect to Joni library which is included
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   905
with the Nashorn technology.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   906
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   907
--- begin of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   908
Permission is hereby granted, free of charge, to any person obtaining a copy of
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   909
this software and associated documentation files (the "Software"), to deal in
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   910
the Software without restriction, including without limitation the rights to
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   911
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   912
of the Software, and to permit persons to whom the Software is furnished to do
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   913
so, subject to the following conditions:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   914
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   915
The above copyright notice and this permission notice shall be included in all
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   916
copies or substantial portions of the Software.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   917
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   918
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   919
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   920
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   921
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   922
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   923
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   924
SOFTWARE.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   925
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   926
--- end of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   927
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   928
-------------------------------------------------------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   929
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   930
%% This notice is provided with respect to FontConfig 2.5, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   931
included with JRE 8, JDK 8, and OpenJDK 8 source distributions on
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   932
Linux and Solaris.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   933
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   934
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   935
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   936
Copyright © 2001,2003 Keith Packard
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   937
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   938
Permission to use, copy, modify, distribute, and sell this software and its
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   939
documentation for any purpose is hereby granted without fee, provided that the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   940
above copyright notice appear in all copies and that both that copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   941
notice and this permission notice appear in supporting documentation, and that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   942
the name of Keith Packard not be used in advertising or publicity pertaining
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   943
to distribution of the software without specific, written prior permission.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   944
Keith Packard makes no representations about the suitability of this software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   945
for any purpose.  It is provided "as is" without express or implied warranty.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   946
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   947
KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   948
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL KEITH
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   949
PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   950
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   951
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   952
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   953
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   954
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   955
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   956
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   957
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   958
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   959
%% This notice is provided with respect to IAIK PKCS#11 Wrapper, 
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
   960
which may be included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   961
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   962
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   963
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   964
IAIK PKCS#11 Wrapper License
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   965
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   966
Copyright (c) 2002 Graz University of Technology. All rights reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   967
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   968
Redistribution and use in source and binary forms, with or without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   969
modification, are permitted provided that the following conditions are met:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   970
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   971
1. Redistributions of source code must retain the above copyright notice, this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   972
   list of conditions and the following disclaimer.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   973
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   974
2. Redistributions in binary form must reproduce the above copyright notice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   975
   this list of conditions and the following disclaimer in the documentation
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   976
   and/or other materials provided with the distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   977
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   978
3. The end-user documentation included with the redistribution, if any, must
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   979
   include the following acknowledgment:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   980
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   981
   "This product includes software developed by IAIK of Graz University of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   982
    Technology."
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   983
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   984
   Alternately, this acknowledgment may appear in the software itself, if and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   985
   wherever such third-party acknowledgments normally appear.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   986
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   987
4. The names "Graz University of Technology" and "IAIK of Graz University of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   988
   Technology" must not be used to endorse or promote products derived from this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   989
   software without prior written permission.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   990
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   991
5. Products derived from this software may not be called "IAIK PKCS Wrapper",
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   992
   nor may "IAIK" appear in their name, without prior written permission of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   993
   Graz University of Technology.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   994
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   995
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   996
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   997
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   998
LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
   999
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1000
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1001
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1002
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1003
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1004
POSSIBILITY OF SUCH DAMAGE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1005
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1006
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1007
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1008
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1009
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1010
%% This notice is provided with respect to ICU4C 4.0.1 and ICU4J 4.4, which 
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1011
may be included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1012
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1013
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1014
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1015
Copyright (c) 1995-2010 International Business Machines Corporation and others 
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1016
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1017
All rights reserved. 
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1018
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1019
Permission is hereby granted, free of charge, to any person obtaining a copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1020
of this software and associated documentation files (the "Software"), to deal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1021
in the Software without restriction, including without limitation the rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1022
to use, copy, modify, merge, publish, distribute, and/or sell copies of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1023
Software, and to permit persons to whom the Software is furnished to do so,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1024
provided that the above copyright notice(s) and this permission notice appear
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1025
in all copies of the Software and that both the above copyright notice(s) and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1026
this permission notice appear in supporting documentation.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1027
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1028
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1029
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1030
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1031
NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1032
LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1033
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1034
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1035
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1036
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1037
Except as contained in this notice, the name of a copyright holder shall not
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1038
be used in advertising or otherwise to promote the sale, use or other dealings
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1039
in this Software without prior written authorization of the copyright holder.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1040
All trademarks and registered trademarks mentioned herein are the property of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1041
their respective owners.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1042
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1043
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1044
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1045
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1046
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1047
%% This notice is provided with respect to IJG JPEG 6b, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1048
included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1049
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1050
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1051
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1052
This software is copyright (C) 1991-1998, Thomas G. Lane.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1053
All Rights Reserved except as specified below.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1054
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1055
Permission is hereby granted to use, copy, modify, and distribute this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1056
software (or portions thereof) for any purpose, without fee, subject to these
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1057
conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1058
(1) If any part of the source code for this software is distributed, then this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1059
README file must be included, with this copyright and no-warranty notice
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1060
unaltered; and any additions, deletions, or changes to the original files
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1061
must be clearly indicated in accompanying documentation.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1062
(2) If only executable code is distributed, then the accompanying
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1063
documentation must state that "this software is based in part on the work of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1064
the Independent JPEG Group".
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1065
(3) Permission for use of this software is granted only if the user accepts
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1066
full responsibility for any undesirable consequences; the authors accept
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1067
NO LIABILITY for damages of any kind.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1068
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1069
These conditions apply to any software derived from or based on the IJG code,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1070
not just to the unmodified library.  If you use our work, you ought to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1071
acknowledge us.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1072
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1073
Permission is NOT granted for the use of any IJG author's name or company name
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1074
in advertising or publicity relating to this software or products derived from
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1075
it.  This software may be referred to only as "the Independent JPEG Group's
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1076
software".
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1077
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1078
We specifically permit and encourage the use of this software as the basis of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1079
commercial products, provided that all warranty or liability claims are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1080
assumed by the product vendor.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1081
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1082
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1083
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1084
--------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1085
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1086
%% This notice is provided with respect to Joni v1.1.9, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1087
included with JRE 8, JDK 8, and OpenJDK 8.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1088
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1089
--- begin of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1090
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1091
Permission is hereby granted, free of charge, to any person obtaining a copy
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1092
of this software and associated documentation files (the "Software"), to deal
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1093
in the Software without restriction, including without limitation the rights
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1094
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1095
copies of the Software, and to permit persons to whom the Software is
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1096
furnished to do so, subject to the following conditions:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1097
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1098
The above copyright notice and this permission notice shall be included in all
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1099
copies or substantial portions of the Software.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1100
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1101
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1102
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1103
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1104
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1105
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1106
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1107
SOFTWARE.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1108
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1109
--- end of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1110
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1111
-------------------------------------------------------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1112
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1113
%% This notice is provided with respect to JOpt-Simple v3.0,  which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1114
included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1115
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1116
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1117
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1118
 Copyright (c) 2004-2009 Paul R. Holser, Jr.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1119
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1120
 Permission is hereby granted, free of charge, to any person obtaining
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1121
 a copy of this software and associated documentation files (the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1122
 "Software"), to deal in the Software without restriction, including
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1123
 without limitation the rights to use, copy, modify, merge, publish,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1124
 distribute, sublicense, and/or sell copies of the Software, and to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1125
 permit persons to whom the Software is furnished to do so, subject to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1126
 the following conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1127
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1128
 The above copyright notice and this permission notice shall be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1129
 included in all copies or substantial portions of the Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1130
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1131
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1132
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1133
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1134
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1135
 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1136
 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1137
 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1138
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1139
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1140
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1141
--------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1142
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1143
%% This notice is provided with respect to JSON, which may be included 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1144
with JRE 8 & JDK 8.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1145
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1146
--- begin of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1147
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1148
Copyright (c) 2002 JSON.org
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1149
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1150
Permission is hereby granted, free of charge, to any person obtaining a copy
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1151
of this software and associated documentation files (the "Software"), to deal
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1152
in the Software without restriction, including without limitation the rights
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1153
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1154
copies of the Software, and to permit persons to whom the Software is
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1155
furnished to do so, subject to the following conditions:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1156
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1157
The above copyright notice and this permission notice shall be included in all
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1158
copies or substantial portions of the Software.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1159
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1160
The Software shall be used for Good, not Evil.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1161
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1162
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1163
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1164
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1165
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1166
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1167
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1168
SOFTWARE.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1169
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1170
--- end of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1171
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1172
-------------------------------------------------------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1173
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1174
%% This notice is provided with respect to Kerberos functionality, which 
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1175
which may be included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1176
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1177
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1178
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1179
 (C) Copyright IBM Corp. 1999 All Rights Reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1180
 Copyright 1997 The Open Group Research Institute. All rights reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1181
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1182
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1183
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1184
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1185
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1186
%% This notice is provided with respect to Kerberos functionality from 
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1187
FundsXpress, INC., which may be included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1188
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1189
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1190
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1191
 Copyright (C) 1998 by the FundsXpress, INC.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1192
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1193
 All rights reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1194
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1195
 Export of this software from the United States of America may require
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1196
 a specific license from the United States Government.  It is the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1197
 responsibility of any person or organization contemplating export to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1198
 obtain such a license before exporting.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1199
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1200
 WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1201
 distribute this software and its documentation for any purpose and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1202
 without fee is hereby granted, provided that the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1203
 notice appear in all copies and that both that copyright notice and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1204
 this permission notice appear in supporting documentation, and that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1205
 the name of FundsXpress. not be used in advertising or publicity pertaining
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1206
 to distribution of the software without specific, written prior
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1207
 permission.  FundsXpress makes no representations about the suitability of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1208
 this software for any purpose.  It is provided "as is" without express
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1209
 or implied warranty.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1210
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1211
 THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1212
 IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1213
 WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1214
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1215
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1216
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1217
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1218
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1219
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1220
%% This notice is provided with respect to Kronos OpenGL headers, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1221
included with JDK 8 and OpenJDK 8 source distributions.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1222
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1223
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1224
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1225
 Copyright (c) 2007 The Khronos Group Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1226
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1227
 Permission is hereby granted, free of charge, to any person obtaining a copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1228
 of this software and/or associated documentation files (the "Materials"), to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1229
 deal in the Materials without restriction, including without limitation the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1230
 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1231
 sell copies of the Materials, and to permit persons to whom the Materials are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1232
 furnished to do so, subject to the following conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1233
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1234
 The above copyright notice and this permission notice shall be included in all
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1235
 copies or substantial portions of the Materials.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1236
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1237
 THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1238
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1239
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1240
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1241
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1242
 OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1243
 MATERIALS.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1244
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1245
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1246
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1247
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1248
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1249
%% Portions Copyright Eastman Kodak Company 1992
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1250
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1251
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1252
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1253
%% This notice is provided with respect to libpng 1.5.4, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1254
included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1255
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1256
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1257
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1258
This copy of the libpng notices is provided for your convenience.  In case of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1259
any discrepancy between this copy and the notices in the file png.h that is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1260
included in the libpng distribution, the latter shall prevail.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1261
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1262
COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1263
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1264
If you modify libpng you may insert additional notices immediately following
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1265
this sentence.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1266
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1267
This code is released under the libpng license.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1268
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1269
libpng versions 1.2.6, August 15, 2004, through 1.5.4, July 7, 2011, are
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1270
Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1271
distributed according to the same disclaimer and license as libpng-1.2.5
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1272
with the following individual added to the list of Contributing Authors
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1273
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1274
   Cosmin Truta
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1275
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1276
libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1277
Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1278
distributed according to the same disclaimer and license as libpng-1.0.6
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1279
with the following individuals added to the list of Contributing Authors
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1280
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1281
   Simon-Pierre Cadieux
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1282
   Eric S. Raymond
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1283
   Gilles Vollant
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1284
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1285
and with the following additions to the disclaimer:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1286
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1287
   There is no warranty against interference with your enjoyment of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1288
   library or against infringement.  There is no warranty that our
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1289
   efforts or the library will fulfill any of your particular purposes
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1290
   or needs.  This library is provided with all faults, and the entire
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1291
   risk of satisfactory quality, performance, accuracy, and effort is with
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1292
   the user.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1293
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1294
libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1295
Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1296
distributed according to the same disclaimer and license as libpng-0.96,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1297
with the following individuals added to the list of Contributing Authors:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1298
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1299
   Tom Lane
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1300
   Glenn Randers-Pehrson
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1301
   Willem van Schaik
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1302
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1303
libpng versions 0.89, June 1996, through 0.96, May 1997, are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1304
Copyright (c) 1996, 1997 Andreas Dilger
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1305
Distributed according to the same disclaimer and license as libpng-0.88,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1306
with the following individuals added to the list of Contributing Authors:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1307
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1308
   John Bowler
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1309
   Kevin Bracey
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1310
   Sam Bushell
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1311
   Magnus Holmgren
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1312
   Greg Roelofs
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1313
   Tom Tanner
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1314
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1315
libpng versions 0.5, May 1995, through 0.88, January 1996, are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1316
Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1317
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1318
For the purposes of this copyright and license, "Contributing Authors"
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1319
is defined as the following set of individuals:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1320
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1321
   Andreas Dilger
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1322
   Dave Martindale
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1323
   Guy Eric Schalnat
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1324
   Paul Schmidt
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1325
   Tim Wegner
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1326
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1327
The PNG Reference Library is supplied "AS IS".  The Contributing Authors
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1328
and Group 42, Inc. disclaim all warranties, expressed or implied,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1329
including, without limitation, the warranties of merchantability and of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1330
fitness for any purpose.  The Contributing Authors and Group 42, Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1331
assume no liability for direct, indirect, incidental, special, exemplary,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1332
or consequential damages, which may result from the use of the PNG
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1333
Reference Library, even if advised of the possibility of such damage.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1334
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1335
Permission is hereby granted to use, copy, modify, and distribute this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1336
source code, or portions hereof, for any purpose, without fee, subject
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1337
to the following restrictions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1338
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1339
1. The origin of this source code must not be misrepresented.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1340
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1341
2. Altered versions must be plainly marked as such and must not
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1342
   be misrepresented as being the original source.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1343
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1344
3. This Copyright notice may not be removed or altered from any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1345
   source or altered source distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1346
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1347
The Contributing Authors and Group 42, Inc. specifically permit, without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1348
fee, and encourage the use of this source code as a component to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1349
supporting the PNG file format in commercial products.  If you use this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1350
source code in a product, acknowledgment is not required but would be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1351
appreciated.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1352
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1353
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1354
A "png_get_copyright" function is available, for convenient use in "about"
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1355
boxes and the like:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1356
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1357
   printf("%s",png_get_copyright(NULL));
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1358
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1359
Also, the PNG logo (in PNG format, of course) is supplied in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1360
files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1361
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1362
Libpng is OSI Certified Open Source Software.  OSI Certified Open Source is a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1363
certification mark of the Open Source Initiative.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1364
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1365
Glenn Randers-Pehrson
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1366
glennrp at users.sourceforge.net
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1367
July 7, 2011
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1368
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1369
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1370
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1371
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1372
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1373
%% This notice is provided with respect to libungif 4.1.3, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1374
included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1375
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1376
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1377
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1378
The GIFLIB distribution is Copyright (c) 1997  Eric S. Raymond
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1379
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1380
Permission is hereby granted, free of charge, to any person obtaining a copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1381
of this software and associated documentation files (the "Software"), to deal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1382
in the Software without restriction, including without limitation the rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1383
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1384
copies of the Software, and to permit persons to whom the Software is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1385
furnished to do so, subject to the following conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1386
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1387
The above copyright notice and this permission notice shall be included in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1388
all copies or substantial portions of the Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1389
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1390
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1391
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1392
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1393
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1394
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1395
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1396
THE SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1397
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1398
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1399
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1400
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1401
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1402
%% This notice is provided with respect to Little CMS 2.4, which may be 
22988
20e1d25d11bd 8032816: THIRDPARTYREADME LittleCMS preamble missing JRE 8 & JDK 8
jeff
parents: 22987
diff changeset
  1403
included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1404
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1405
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1406
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1407
Little CMS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1408
Copyright (c) 1998-2010 Marti Maria Saguer
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1409
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1410
Permission is hereby granted, free of charge, to any person obtaining a copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1411
of this software and associated documentation files (the "Software"), to deal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1412
in the Software without restriction, including without limitation the rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1413
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1414
copies of the Software, and to permit persons to whom the Software is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1415
furnished to do so, subject to the following conditions:
2296
a536dae06f52 6695776: corba jscheme jar files in repository could be built from source
tbell
parents: 2
diff changeset
  1416
a536dae06f52 6695776: corba jscheme jar files in repository could be built from source
tbell
parents: 2
diff changeset
  1417
The above copyright notice and this permission notice shall be included in all
a536dae06f52 6695776: corba jscheme jar files in repository could be built from source
tbell
parents: 2
diff changeset
  1418
copies or substantial portions of the Software.
a536dae06f52 6695776: corba jscheme jar files in repository could be built from source
tbell
parents: 2
diff changeset
  1419
a536dae06f52 6695776: corba jscheme jar files in repository could be built from source
tbell
parents: 2
diff changeset
  1420
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1421
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1422
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1423
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1424
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1425
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1426
SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1427
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1428
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1429
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1430
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1431
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1432
%% Lucida is a registered trademark or trademark of Bigelow & Holmes in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1433
U.S. and other countries.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1434
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1435
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1436
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1437
%% This notice is provided with respect to Mesa 3D Graphics Library v4.1,
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1438
which may be included with JRE 8, JDK 8, and OpenJDK 8 source distributions.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1439
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1440
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1441
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1442
 Mesa 3-D graphics library
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1443
 Version:  4.1
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1444
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1445
 Copyright (C) 1999-2002  Brian Paul   All Rights Reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1446
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1447
 Permission is hereby granted, free of charge, to any person obtaining a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1448
 copy of this software and associated documentation files (the "Software"),
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1449
 to deal in the Software without restriction, including without limitation
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1450
 the rights to use, copy, modify, merge, publish, distribute, sublicense,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1451
 and/or sell copies of the Software, and to permit persons to whom the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1452
 Software is furnished to do so, subject to the following conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1453
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1454
 The above copyright notice and this permission notice shall be included
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1455
 in all copies or substantial portions of the Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1456
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1457
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1458
 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1459
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1460
 BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1461
 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1462
 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1463
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1464
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1465
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1466
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1467
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1468
%% This notice is provided with respect to Mozilla Network Security
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1469
Services (NSS), which is supplied with the JDK test suite in the OpenJDK
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1470
source code repository. It is licensed under Mozilla Public License (MPL),
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1471
version 2.0.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1472
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1473
The NSS libraries are supplied in executable form, built from unmodified
24984
c95ced1327af 8047085: PKCS11/NSS tests failing intermittently on Windows
vinnie
parents: 22988
diff changeset
  1474
NSS source code labeled with the "NSS_3_16_RTM" HG tag.
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1475
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1476
The NSS source code is available in the OpenJDK source code repository at:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1477
    jdk/test/sun/security/pkcs11/nss/src
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1478
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1479
The NSS libraries are available in the OpenJDK source code repository at:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1480
    jdk/test/sun/security/pkcs11/nss/lib
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1481
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1482
--- begin of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1483
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1484
Mozilla Public License Version 2.0
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1485
==================================
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1486
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1487
1. Definitions
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1488
--------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1489
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1490
1.1. "Contributor"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1491
    means each individual or legal entity that creates, contributes to
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1492
    the creation of, or owns Covered Software.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1493
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1494
1.2. "Contributor Version"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1495
    means the combination of the Contributions of others (if any) used
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1496
    by a Contributor and that particular Contributor's Contribution.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1497
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1498
1.3. "Contribution"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1499
    means Covered Software of a particular Contributor.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1500
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1501
1.4. "Covered Software"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1502
    means Source Code Form to which the initial Contributor has attached
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1503
    the notice in Exhibit A, the Executable Form of such Source Code
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1504
    Form, and Modifications of such Source Code Form, in each case
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1505
    including portions thereof.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1506
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1507
1.5. "Incompatible With Secondary Licenses"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1508
    means
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1509
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1510
    (a) that the initial Contributor has attached the notice described
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1511
        in Exhibit B to the Covered Software; or
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1512
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1513
    (b) that the Covered Software was made available under the terms of
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1514
        version 1.1 or earlier of the License, but not also under the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1515
        terms of a Secondary License.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1516
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1517
1.6. "Executable Form"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1518
    means any form of the work other than Source Code Form.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1519
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1520
1.7. "Larger Work"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1521
    means a work that combines Covered Software with other material, in 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1522
    a separate file or files, that is not Covered Software.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1523
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1524
1.8. "License"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1525
    means this document.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1526
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1527
1.9. "Licensable"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1528
    means having the right to grant, to the maximum extent possible,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1529
    whether at the time of the initial grant or subsequently, any and
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1530
    all of the rights conveyed by this License.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1531
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1532
1.10. "Modifications"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1533
    means any of the following:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1534
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1535
    (a) any file in Source Code Form that results from an addition to,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1536
        deletion from, or modification of the contents of Covered
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1537
        Software; or
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1538
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1539
    (b) any new file in Source Code Form that contains any Covered
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1540
        Software.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1541
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1542
1.11. "Patent Claims" of a Contributor
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1543
    means any patent claim(s), including without limitation, method,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1544
    process, and apparatus claims, in any patent Licensable by such
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1545
    Contributor that would be infringed, but for the grant of the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1546
    License, by the making, using, selling, offering for sale, having
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1547
    made, import, or transfer of either its Contributions or its
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1548
    Contributor Version.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1549
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1550
1.12. "Secondary License"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1551
    means either the GNU General Public License, Version 2.0, the GNU
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1552
    Lesser General Public License, Version 2.1, the GNU Affero General
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1553
    Public License, Version 3.0, or any later versions of those
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1554
    licenses.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1555
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1556
1.13. "Source Code Form"
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1557
    means the form of the work preferred for making modifications.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1558
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1559
1.14. "You" (or "Your")
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1560
    means an individual or a legal entity exercising rights under this
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1561
    License. For legal entities, "You" includes any entity that
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1562
    controls, is controlled by, or is under common control with You. For
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1563
    purposes of this definition, "control" means (a) the power, direct
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1564
    or indirect, to cause the direction or management of such entity,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1565
    whether by contract or otherwise, or (b) ownership of more than
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1566
    fifty percent (50%) of the outstanding shares or beneficial
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1567
    ownership of such entity.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1568
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1569
2. License Grants and Conditions
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1570
--------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1571
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1572
2.1. Grants
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1573
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1574
Each Contributor hereby grants You a world-wide, royalty-free,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1575
non-exclusive license:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1576
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1577
(a) under intellectual property rights (other than patent or trademark)
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1578
    Licensable by such Contributor to use, reproduce, make available,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1579
    modify, display, perform, distribute, and otherwise exploit its
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1580
    Contributions, either on an unmodified basis, with Modifications, or
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1581
    as part of a Larger Work; and
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1582
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1583
(b) under Patent Claims of such Contributor to make, use, sell, offer
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1584
    for sale, have made, import, and otherwise transfer either its
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1585
    Contributions or its Contributor Version.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1586
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1587
2.2. Effective Date
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1588
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1589
The licenses granted in Section 2.1 with respect to any Contribution
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1590
become effective for each Contribution on the date the Contributor first
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1591
distributes such Contribution.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1592
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1593
2.3. Limitations on Grant Scope
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1594
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1595
The licenses granted in this Section 2 are the only rights granted under
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1596
this License. No additional rights or licenses will be implied from the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1597
distribution or licensing of Covered Software under this License.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1598
Notwithstanding Section 2.1(b) above, no patent license is granted by a
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1599
Contributor:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1600
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1601
(a) for any code that a Contributor has removed from Covered Software;
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1602
    or
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1603
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1604
(b) for infringements caused by: (i) Your and any other third party's
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1605
    modifications of Covered Software, or (ii) the combination of its
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1606
    Contributions with other software (except as part of its Contributor
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1607
    Version); or
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1608
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1609
(c) under Patent Claims infringed by Covered Software in the absence of
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1610
    its Contributions.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1611
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1612
This License does not grant any rights in the trademarks, service marks,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1613
or logos of any Contributor (except as may be necessary to comply with
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1614
the notice requirements in Section 3.4).
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1615
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1616
2.4. Subsequent Licenses
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1617
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1618
No Contributor makes additional grants as a result of Your choice to
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1619
distribute the Covered Software under a subsequent version of this
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1620
License (see Section 10.2) or under the terms of a Secondary License (if
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1621
permitted under the terms of Section 3.3).
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1622
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1623
2.5. Representation
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1624
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1625
Each Contributor represents that the Contributor believes its
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1626
Contributions are its original creation(s) or it has sufficient rights
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1627
to grant the rights to its Contributions conveyed by this License.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1628
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1629
2.6. Fair Use
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1630
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1631
This License is not intended to limit any rights You have under
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1632
applicable copyright doctrines of fair use, fair dealing, or other
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1633
equivalents.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1634
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1635
2.7. Conditions
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1636
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1637
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1638
in Section 2.1.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1639
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1640
3. Responsibilities
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1641
-------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1642
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1643
3.1. Distribution of Source Form
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1644
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1645
All distribution of Covered Software in Source Code Form, including any
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1646
Modifications that You create or to which You contribute, must be under
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1647
the terms of this License. You must inform recipients that the Source
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1648
Code Form of the Covered Software is governed by the terms of this
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1649
License, and how they can obtain a copy of this License. You may not
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1650
attempt to alter or restrict the recipients' rights in the Source Code
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1651
Form.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1652
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1653
3.2. Distribution of Executable Form
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1654
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1655
If You distribute Covered Software in Executable Form then:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1656
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1657
(a) such Covered Software must also be made available in Source Code
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1658
    Form, as described in Section 3.1, and You must inform recipients of
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1659
    the Executable Form how they can obtain a copy of such Source Code
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1660
    Form by reasonable means in a timely manner, at a charge no more
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1661
    than the cost of distribution to the recipient; and
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1662
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1663
(b) You may distribute such Executable Form under the terms of this
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1664
    License, or sublicense it under different terms, provided that the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1665
    license for the Executable Form does not attempt to limit or alter
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1666
    the recipients' rights in the Source Code Form under this License.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1667
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1668
3.3. Distribution of a Larger Work
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1669
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1670
You may create and distribute a Larger Work under terms of Your choice,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1671
provided that You also comply with the requirements of this License for
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1672
the Covered Software. If the Larger Work is a combination of Covered
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1673
Software with a work governed by one or more Secondary Licenses, and the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1674
Covered Software is not Incompatible With Secondary Licenses, this
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1675
License permits You to additionally distribute such Covered Software
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1676
under the terms of such Secondary License(s), so that the recipient of
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1677
the Larger Work may, at their option, further distribute the Covered
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1678
Software under the terms of either this License or such Secondary
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1679
License(s).
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1680
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1681
3.4. Notices
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1682
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1683
You may not remove or alter the substance of any license notices
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1684
(including copyright notices, patent notices, disclaimers of warranty,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1685
or limitations of liability) contained within the Source Code Form of
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1686
the Covered Software, except that You may alter any license notices to
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1687
the extent required to remedy known factual inaccuracies.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1688
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1689
3.5. Application of Additional Terms
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1690
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1691
You may choose to offer, and to charge a fee for, warranty, support,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1692
indemnity or liability obligations to one or more recipients of Covered
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1693
Software. However, You may do so only on Your own behalf, and not on
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1694
behalf of any Contributor. You must make it absolutely clear that any
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1695
such warranty, support, indemnity, or liability obligation is offered by
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1696
You alone, and You hereby agree to indemnify every Contributor for any
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1697
liability incurred by such Contributor as a result of warranty, support,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1698
indemnity or liability terms You offer. You may include additional
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1699
disclaimers of warranty and limitations of liability specific to any
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1700
jurisdiction.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1701
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1702
4. Inability to Comply Due to Statute or Regulation
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1703
---------------------------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1704
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1705
If it is impossible for You to comply with any of the terms of this
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1706
License with respect to some or all of the Covered Software due to
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1707
statute, judicial order, or regulation then You must: (a) comply with
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1708
the terms of this License to the maximum extent possible; and (b)
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1709
describe the limitations and the code they affect. Such description must
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1710
be placed in a text file included with all distributions of the Covered
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1711
Software under this License. Except to the extent prohibited by statute
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1712
or regulation, such description must be sufficiently detailed for a
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1713
recipient of ordinary skill to be able to understand it.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1714
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1715
5. Termination
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1716
--------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1717
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1718
5.1. The rights granted under this License will terminate automatically
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1719
if You fail to comply with any of its terms. However, if You become
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1720
compliant, then the rights granted under this License from a particular
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1721
Contributor are reinstated (a) provisionally, unless and until such
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1722
Contributor explicitly and finally terminates Your grants, and (b) on an
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1723
ongoing basis, if such Contributor fails to notify You of the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1724
non-compliance by some reasonable means prior to 60 days after You have
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1725
come back into compliance. Moreover, Your grants from a particular
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1726
Contributor are reinstated on an ongoing basis if such Contributor
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1727
notifies You of the non-compliance by some reasonable means, this is the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1728
first time You have received notice of non-compliance with this License
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1729
from such Contributor, and You become compliant prior to 30 days after
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1730
Your receipt of the notice.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1731
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1732
5.2. If You initiate litigation against any entity by asserting a patent
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1733
infringement claim (excluding declaratory judgment actions,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1734
counter-claims, and cross-claims) alleging that a Contributor Version
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1735
directly or indirectly infringes any patent, then the rights granted to
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1736
You by any and all Contributors for the Covered Software under Section
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1737
2.1 of this License shall terminate.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1738
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1739
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1740
end user license agreements (excluding distributors and resellers) which
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1741
have been validly granted by You or Your distributors under this License
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1742
prior to termination shall survive termination.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1743
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1744
************************************************************************
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1745
*                                                                      *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1746
*  6. Disclaimer of Warranty                                           *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1747
*  -------------------------                                           *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1748
*                                                                      *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1749
*  Covered Software is provided under this License on an "as is"       *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1750
*  basis, without warranty of any kind, either expressed, implied, or  *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1751
*  statutory, including, without limitation, warranties that the       *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1752
*  Covered Software is free of defects, merchantable, fit for a        *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1753
*  particular purpose or non-infringing. The entire risk as to the     *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1754
*  quality and performance of the Covered Software is with You.        *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1755
*  Should any Covered Software prove defective in any respect, You     *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1756
*  (not any Contributor) assume the cost of any necessary servicing,   *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1757
*  repair, or correction. This disclaimer of warranty constitutes an   *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1758
*  essential part of this License. No use of any Covered Software is   *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1759
*  authorized under this License except under this disclaimer.         *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1760
*                                                                      *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1761
************************************************************************
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1762
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1763
************************************************************************
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1764
*                                                                      *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1765
*  7. Limitation of Liability                                          *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1766
*  --------------------------                                          *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1767
*                                                                      *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1768
*  Under no circumstances and under no legal theory, whether tort      *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1769
*  (including negligence), contract, or otherwise, shall any           *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1770
*  Contributor, or anyone who distributes Covered Software as          *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1771
*  permitted above, be liable to You for any direct, indirect,         *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1772
*  special, incidental, or consequential damages of any character      *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1773
*  including, without limitation, damages for lost profits, loss of    *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1774
*  goodwill, work stoppage, computer failure or malfunction, or any    *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1775
*  and all other commercial damages or losses, even if such party      *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1776
*  shall have been informed of the possibility of such damages. This   *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1777
*  limitation of liability shall not apply to liability for death or   *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1778
*  personal injury resulting from such party's negligence to the       *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1779
*  extent applicable law prohibits such limitation. Some               *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1780
*  jurisdictions do not allow the exclusion or limitation of           *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1781
*  incidental or consequential damages, so this exclusion and          *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1782
*  limitation may not apply to You.                                    *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1783
*                                                                      *
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1784
************************************************************************
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1785
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1786
8. Litigation
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1787
-------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1788
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1789
Any litigation relating to this License may be brought only in the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1790
courts of a jurisdiction where the defendant maintains its principal
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1791
place of business and such litigation shall be governed by laws of that
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1792
jurisdiction, without reference to its conflict-of-law provisions.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1793
Nothing in this Section shall prevent a party's ability to bring
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1794
cross-claims or counter-claims.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1795
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1796
9. Miscellaneous
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1797
----------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1798
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1799
This License represents the complete agreement concerning the subject
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1800
matter hereof. If any provision of this License is held to be
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1801
unenforceable, such provision shall be reformed only to the extent
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1802
necessary to make it enforceable. Any law or regulation which provides
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1803
that the language of a contract shall be construed against the drafter
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1804
shall not be used to construe this License against a Contributor.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1805
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1806
10. Versions of the License
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1807
---------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1808
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1809
10.1. New Versions
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1810
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1811
Mozilla Foundation is the license steward. Except as provided in Section
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1812
10.3, no one other than the license steward has the right to modify or
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1813
publish new versions of this License. Each version will be given a
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1814
distinguishing version number.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1815
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1816
10.2. Effect of New Versions
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1817
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1818
You may distribute the Covered Software under the terms of the version
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1819
of the License under which You originally received the Covered Software,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1820
or under the terms of any subsequent version published by the license
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1821
steward.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1822
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1823
10.3. Modified Versions
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1824
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1825
If you create software not governed by this License, and you want to
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1826
create a new license for such software, you may create and use a
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1827
modified version of this License if you rename the license and remove
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1828
any references to the name of the license steward (except to note that
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1829
such modified license differs from this License).
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1830
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1831
10.4. Distributing Source Code Form that is Incompatible With Secondary
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1832
Licenses
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1833
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1834
If You choose to distribute Source Code Form that is Incompatible With
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1835
Secondary Licenses under the terms of this version of the License, the
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1836
notice described in Exhibit B of this License must be attached.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1837
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1838
Exhibit A - Source Code Form License Notice
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1839
-------------------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1840
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1841
  This Source Code Form is subject to the terms of the Mozilla Public
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1842
  License, v. 2.0. If a copy of the MPL was not distributed with this
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1843
  file, You can obtain one at http://mozilla.org/MPL/2.0/.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1844
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1845
If it is not possible or desirable to put the notice in a particular
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1846
file, then You may include the notice in a location (such as a LICENSE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1847
file in a relevant directory) where a recipient would be likely to look
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1848
for such a notice.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1849
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1850
You may add additional accurate notices of copyright ownership.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1851
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1852
Exhibit B - "Incompatible With Secondary Licenses" Notice
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1853
---------------------------------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1854
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1855
  This Source Code Form is "Incompatible With Secondary Licenses", as
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1856
  defined by the Mozilla Public License, v. 2.0.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1857
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1858
--- end of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1859
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1860
-------------------------------------------------------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1861
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1862
%% This notice is provided with respect to PC/SC Lite for Suse Linux v.1.1.1,
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1863
which may be included with JRE 8, JDK 8, and OpenJDK 8 on Linux and Solaris.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1864
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1865
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1866
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1867
Copyright (c) 1999-2004 David Corcoran <corcoran@linuxnet.com>
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1868
Copyright (c) 1999-2004 Ludovic Rousseau <ludovic.rousseau (at) free.fr>
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1869
All rights reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1870
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1871
Redistribution and use in source and binary forms, with or without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1872
modification, are permitted provided that the following conditions
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1873
are met:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1874
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1875
1. Redistributions of source code must retain the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1876
   notice, this list of conditions and the following disclaimer.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1877
2. Redistributions in binary form must reproduce the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1878
   notice, this list of conditions and the following disclaimer in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1879
   documentation and/or other materials provided with the distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1880
3. All advertising materials mentioning features or use of this software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1881
   must display the following acknowledgement:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1882
     This product includes software developed by: 
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1883
      David Corcoran <corcoran@linuxnet.com>
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1884
      http://www.linuxnet.com (MUSCLE)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1885
4. The name of the author may not be used to endorse or promote products
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1886
   derived from this software without specific prior written permission.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1887
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1888
Changes to this license can be made only by the copyright author with 
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1889
explicit written consent.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1890
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1891
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1892
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1893
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1894
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1895
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1896
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1897
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1898
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1899
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1900
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1901
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1902
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1903
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1904
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1905
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1906
%% This notice is provided with respect to PorterStemmer v4, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1907
included with JRE 8, JDK 8, and OpenJDK 8.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1908
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1909
--- begin of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1910
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1911
See: http://tartarus.org/~martin/PorterStemmer
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1912
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1913
The software is completely free for any purpose, unless notes at the head of
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1914
the program text indicates otherwise (which is rare). In any case, the notes
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1915
about licensing are never more restrictive than the BSD License.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1916
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1917
In every case where the software is not written by me (Martin Porter), this
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1918
licensing arrangement has been endorsed by the contributor, and it is
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1919
therefore unnecessary to ask the contributor again to confirm it.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1920
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1921
I have not asked any contributors (or their employers, if they have them) for
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1922
proofs that they have the right to distribute their software in this way.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1923
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1924
--- end of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1925
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1926
-------------------------------------------------------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1927
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1928
%% This notice is provided with respect to Relax NG Object/Parser v.20050510,
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1929
which may be included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1930
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1931
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1932
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1933
Copyright (c) Kohsuke Kawaguchi
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1934
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1935
Permission is hereby granted, free of charge, to any person obtaining a copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1936
of this software and associated documentation files (the "Software"), to deal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1937
in the Software without restriction, including without limitation the rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1938
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1939
copies of the Software, and to permit persons to whom the Software is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1940
furnished to do so, subject to the following conditions: The above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1941
notice and this permission notice shall be included in all copies or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1942
substantial portions of the Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1943
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1944
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1945
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1946
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1947
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1948
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1949
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1950
SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1951
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1952
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1953
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1954
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1955
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1956
%% This notice is provided with respect to RelaxNGCC v1.12, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  1957
included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1958
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1959
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1960
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1961
Copyright (c) 2000-2003 Daisuke Okajima and Kohsuke Kawaguchi.  
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1962
All rights reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1963
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1964
Redistribution and use in source and binary forms, with or without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1965
modification, are permitted provided that the following conditions are met:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1966
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1967
1. Redistributions of source code must retain the above copyright notice, this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1968
   list of conditions and the following disclaimer.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1969
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1970
2. Redistributions in binary form must reproduce the above copyright notice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1971
   this list of conditions and the following disclaimer in the documentation
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1972
   and/or other materials provided with the distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1973
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1974
3. The end-user documentation included with the redistribution, if any, must
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1975
   include the following acknowledgment:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1976
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1977
    "This product includes software developed by Daisuke Okajima
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1978
    and Kohsuke Kawaguchi (http://relaxngcc.sf.net/)."
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1979
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1980
Alternately, this acknowledgment may appear in the software itself, if and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1981
wherever such third-party acknowledgments normally appear.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1982
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1983
4. The names of the copyright holders must not be used to endorse or promote
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1984
   products derived from this software without prior written permission. For
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1985
   written permission, please contact the copyright holders.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1986
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1987
5. Products derived from this software may not be called "RELAXNGCC", nor may
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1988
  "RELAXNGCC" appear in their name, without prior written permission of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1989
  copyright holders.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1990
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1991
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1992
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1993
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.IN NO EVENT SHALL THE APACHE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1994
SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1995
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1996
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1997
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1998
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  1999
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2000
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2001
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2002
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2003
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2004
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2005
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2006
%% This notice is provided with respect to SAX 2.0.1, which may be included 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2007
with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2008
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2009
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2010
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2011
 SAX is free!
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2012
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2013
 In fact, it's not possible to own a license to SAX, since it's been placed in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2014
 the public domain.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2015
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2016
 No Warranty
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2017
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2018
 Because SAX is released to the public domain, there is no warranty for the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2019
 design or for the software implementation, to the extent permitted by
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2020
 applicable law. Except when otherwise stated in writing the copyright holders
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2021
 and/or other parties provide SAX "as is" without warranty of any kind, either
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2022
 expressed or implied, including, but not limited to, the implied warranties
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2023
 of merchantability and fitness for a particular purpose. The entire risk as
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2024
 to the quality and performance of SAX is with you. Should SAX prove
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2025
 defective, you assume the cost of all necessary servicing, repair or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2026
 correction.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2027
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2028
 In no event unless required by applicable law or agreed to in writing will
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2029
 any copyright holder, or any other party who may modify and/or redistribute
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2030
 SAX, be liable to you for damages, including any general, special, incidental
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2031
 or consequential damages arising out of the use or inability to use SAX
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2032
 (including but not limited to loss of data or data being rendered inaccurate
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2033
 or losses sustained by you or third parties or a failure of the SAX to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2034
 operate with any other programs), even if such holder or other party has been
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2035
 advised of the possibility of such damages.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2036
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2037
 Copyright Disclaimers 
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2038
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2039
 This page includes statements to that effect by David Megginson, who would
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2040
 have been able to claim copyright for the original work.  SAX 1.0
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2041
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2042
 Version 1.0 of the Simple API for XML (SAX), created collectively by the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2043
 membership of the XML-DEV mailing list, is hereby released into the public
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2044
 domain.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2045
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2046
 No one owns SAX: you may use it freely in both commercial and non-commercial
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2047
 applications, bundle it with your software distribution, include it on a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2048
 CD-ROM, list the source code in a book, mirror the documentation at your own
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2049
 web site, or use it in any other way you see fit.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2050
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2051
 David Megginson, sax@megginson.com
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2052
 1998-05-11
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2053
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2054
 SAX 2.0 
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2055
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2056
 I hereby abandon any property rights to SAX 2.0 (the Simple API for XML), and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2057
 release all of the SAX 2.0 source code, compiled code, and documentation
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2058
 contained in this distribution into the Public Domain. SAX comes with NO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2059
 WARRANTY or guarantee of fitness for any purpose.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2060
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2061
 David Megginson, david@megginson.com
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2062
 2000-05-05
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2063
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2064
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2065
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2066
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2067
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2068
%% This notice is provided with respect to SoftFloat version 2b, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2069
included with JRE 8, JDK 8, and OpenJDK 8 on Linux/ARM.
9904
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2070
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2071
--- begin of LICENSE ---
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2072
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2073
Use of any of this software is governed by the terms of the license below:
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2074
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2075
SoftFloat was written by me, John R. Hauser. This work was made possible in 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2076
part by the International Computer Science Institute, located at Suite 600, 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2077
1947 Center Street, Berkeley, California 94704. Funding was partially 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2078
provided by the National Science Foundation under grant MIP-9311980. The 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2079
original version of this code was written as part of a project to build 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2080
a fixed-point vector processor in collaboration with the University of 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2081
California at Berkeley, overseen by Profs. Nelson Morgan and John Wawrzynek. 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2082
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2083
THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2084
has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2085
TIMES RESULT IN INCORRECT BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2086
PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ALL 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2087
LOSSES, COSTS, OR OTHER PROBLEMS THEY INCUR DUE TO THE SOFTWARE, AND WHO 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2088
FURTHERMORE EFFECTIVELY INDEMNIFY JOHN HAUSER AND THE INTERNATIONAL COMPUTER 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2089
SCIENCE INSTITUTE (possibly via similar legal warning) AGAINST ALL LOSSES, 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2090
COSTS, OR OTHER PROBLEMS INCURRED BY THEIR CUSTOMERS AND CLIENTS DUE TO THE 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2091
SOFTWARE. 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2092
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2093
Derivative works are acceptable, even for commercial purposes, provided 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2094
that the minimal documentation requirements stated in the source code are 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2095
satisfied. 
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2096
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2097
--- end of LICENSE ---
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2098
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2099
-------------------------------------------------------------------------------
b3319c87fd74 7057046: Add embedded license to THIRD PARTY README
jeff
parents: 9773
diff changeset
  2100
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2101
%% This notice is provided with respect to Sparkle 1.5,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2102
which may be included with JRE 8 on Mac OS X.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2103
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2104
--- begin of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2105
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2106
Copyright (c) 2012 Sparkle.org and Andy Matuschak
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2107
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2108
Permission is hereby granted, free of charge, to any person obtaining a copy
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2109
of this software and associated documentation files (the "Software"), to deal
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2110
in the Software without restriction, including without limitation the rights
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2111
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2112
copies of the Software, and to permit persons to whom the Software is
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2113
furnished to do so, subject to the following conditions:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2114
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2115
The above copyright notice and this permission notice shall be included in all
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2116
copies or substantial portions of the Software.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2117
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2118
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2119
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2120
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2121
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2122
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2123
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2124
SOFTWARE.
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2125
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2126
--- end of LICENSE ---
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2127
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2128
-------------------------------------------------------------------------------
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2129
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2130
%% Portions licensed from Taligent, Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2131
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2132
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2133
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2134
%% This notice is provided with respect to Thai Dictionary, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2135
included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2136
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2137
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2138
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2139
Copyright (C) 1982 The Royal Institute, Thai Royal Government.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2140
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2141
Copyright (C) 1998 National Electronics and Computer Technology Center,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2142
National Science and Technology Development Agency,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2143
Ministry of Science Technology and Environment,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2144
Thai Royal Government.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2145
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2146
Permission is hereby granted, free of charge, to any person obtaining a copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2147
of this software and associated documentation files (the "Software"), to deal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2148
in the Software without restriction, including without limitation the rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2149
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2150
copies of the Software, and to permit persons to whom the Software is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2151
furnished to do so, subject to the following conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2152
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2153
The above copyright notice and this permission notice shall be included in all
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2154
copies or substantial portions of the Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2155
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2156
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2157
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2158
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2159
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2160
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2161
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2162
SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2163
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2164
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2165
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2166
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2167
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2168
%% This notice is provided with respect to Unicode 6.2.0 & CLDR 21.0.1
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2169
which may be included with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2170
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2171
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2172
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2173
Unicode Terms of Use
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2174
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2175
For the general privacy policy governing access to this site, see the Unicode
21400
ffe0308f7e9e 8027466: Revert jdk/THIRD_PARTY_README to known good version
chegar
parents: 21380
diff changeset
  2176
Privacy Policy. For trademark usage, see the Unicode® Consortium Name and
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2177
Trademark Usage Policy.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2178
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2179
A. Unicode Copyright.
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2180
   1. Copyright © 1991-2013 Unicode, Inc. All rights reserved.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2181
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2182
   2. Certain documents and files on this website contain a legend indicating
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2183
      that "Modification is permitted." Any person is hereby authorized,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2184
      without fee, to modify such documents and files to create derivative
21400
ffe0308f7e9e 8027466: Revert jdk/THIRD_PARTY_README to known good version
chegar
parents: 21380
diff changeset
  2185
      works conforming to the Unicode® Standard, subject to Terms and
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2186
      Conditions herein.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2187
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2188
    3. Any person is hereby authorized, without fee, to view, use, reproduce,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2189
       and distribute all documents and files solely for informational
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2190
       purposes in the creation of products supporting the Unicode Standard,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2191
       subject to the Terms and Conditions herein.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2192
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2193
    4. Further specifications of rights and restrictions pertaining to the use
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2194
       of the particular set of data files known as the "Unicode Character
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2195
       Database" can be found in Exhibit 1.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2196
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2197
    5. Each version of the Unicode Standard has further specifications of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2198
       rights and restrictions of use. For the book editions (Unicode 5.0 and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2199
       earlier), these are found on the back of the title page. The online
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2200
       code charts carry specific restrictions. All other files, including
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2201
       online documentation of the core specification for Unicode 6.0 and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2202
       later, are covered under these general Terms of Use.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2203
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2204
    6. No license is granted to "mirror" the Unicode website where a fee is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2205
       charged for access to the "mirror" site.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2206
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2207
    7. Modification is not permitted with respect to this document. All copies
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2208
       of this document must be verbatim.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2209
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2210
B. Restricted Rights Legend. Any technical data or software which is licensed
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2211
   to the United States of America, its agencies and/or instrumentalities
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2212
   under this Agreement is commercial technical data or commercial computer
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2213
   software developed exclusively at private expense as defined in FAR 2.101,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2214
   or DFARS 252.227-7014 (June 1995), as applicable. For technical data, use,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2215
   duplication, or disclosure by the Government is subject to restrictions as
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2216
   set forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2217
   1995) and this Agreement. For Software, in accordance with FAR 12-212 or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2218
   DFARS 227-7202, as applicable, use, duplication or disclosure by the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2219
   Government is subject to the restrictions set forth in this Agreement.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2220
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2221
C. Warranties and Disclaimers.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2222
   1. This publication and/or website may include technical or typographical
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2223
      errors or other inaccuracies . Changes are periodically added to the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2224
      information herein; these changes will be incorporated in new editions
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2225
      of the publication and/or website. Unicode may make improvements and/or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2226
      changes in the product(s) and/or program(s) described in this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2227
      publication and/or website at any time.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2228
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2229
    2. If this file has been purchased on magnetic or optical media from
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2230
       Unicode, Inc. the sole and exclusive remedy for any claim will be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2231
       exchange of the defective media within ninety (90) days of original
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2232
       purchase.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2233
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2234
    3. EXCEPT AS PROVIDED IN SECTION C.2, THIS PUBLICATION AND/OR SOFTWARE IS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2235
       PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2236
       OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2237
       MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2238
       UNICODE AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2239
       OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2240
       ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2241
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2242
D. Waiver of Damages. In no event shall Unicode or its licensors be liable for
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2243
   any special, incidental, indirect or consequential damages of any kind, or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2244
   any damages whatsoever, whether or not Unicode was advised of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2245
   possibility of the damage, including, without limitation, those resulting
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2246
   from the following: loss of use, data or profits, in connection with the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2247
   use, modification or distribution of this information or its derivatives.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2248
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2249
E.Trademarks & Logos.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2250
   1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode,
21400
ffe0308f7e9e 8027466: Revert jdk/THIRD_PARTY_README to known good version
chegar
parents: 21380
diff changeset
  2251
      Inc.  “The Unicode Consortium” and “Unicode, Inc.” are trade names of
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2252
      Unicode, Inc.  Use of the information and materials found on this
21400
ffe0308f7e9e 8027466: Revert jdk/THIRD_PARTY_README to known good version
chegar
parents: 21380
diff changeset
  2253
      website indicates your acknowledgement of Unicode, Inc.’s exclusive
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2254
      worldwide rights in the Unicode Word Mark, the Unicode Logo, and the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2255
      Unicode trade names.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2256
21400
ffe0308f7e9e 8027466: Revert jdk/THIRD_PARTY_README to known good version
chegar
parents: 21380
diff changeset
  2257
   2. The Unicode Consortium Name and Trademark Usage Policy (“Trademark
ffe0308f7e9e 8027466: Revert jdk/THIRD_PARTY_README to known good version
chegar
parents: 21380
diff changeset
  2258
      Policy”) are incorporated herein by reference and you agree to abide by
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2259
      the provisions of the Trademark Policy, which may be changed from time
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2260
      to time in the sole discretion of Unicode, Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2261
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2262
   3. All third party trademarks referenced herein are the property of their
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2263
      respective owners.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2264
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2265
Miscellaneous.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2266
   1. Jurisdiction and Venue. This server is operated from a location in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2267
      State of California, United States of America. Unicode makes no
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2268
      representation that the materials are appropriate for use in other
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2269
      locations. If you access this server from other locations, you are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2270
      responsible for compliance with local laws. This Agreement, all use of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2271
      this site and any claims and damages resulting from use of this site are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2272
      governed solely by the laws of the State of California without regard to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2273
      any principles which would apply the laws of a different jurisdiction.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2274
      The user agrees that any disputes regarding this site shall be resolved
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2275
      solely in the courts located in Santa Clara County, California. The user
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2276
      agrees said courts have personal jurisdiction and agree to waive any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2277
      right to transfer the dispute to any other forum.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2278
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2279
   2. Modification by Unicode.  Unicode shall have the right to modify this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2280
      Agreement at any time by posting it to this site. The user may not
21400
ffe0308f7e9e 8027466: Revert jdk/THIRD_PARTY_README to known good version
chegar
parents: 21380
diff changeset
  2281
      assign any part of this Agreement without Unicode’s prior written
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2282
      consent.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2283
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2284
   3. Taxes. The user agrees to pay any taxes arising from access to this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2285
      website or use of the information herein, except for those based on
21400
ffe0308f7e9e 8027466: Revert jdk/THIRD_PARTY_README to known good version
chegar
parents: 21380
diff changeset
  2286
      Unicode’s net income.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2287
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2288
   4. Severability.  If any provision of this Agreement is declared invalid or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2289
      unenforceable, the remaining provisions of this Agreement shall remain
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2290
      in effect.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2291
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2292
   5. Entire Agreement. This Agreement constitutes the entire agreement
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2293
      between the parties.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2294
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2295
EXHIBIT 1
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2296
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2297
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2298
Unicode Data Files include all data files under the directories
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2299
http://www.unicode.org/Public/, http://www.unicode.org/reports/, and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2300
http://www.unicode.org/cldr/data/. Unicode Data Files do not include PDF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2301
online code charts under the directory http://www.unicode.org/Public/.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2302
Software includes any source code published in the Unicode Standard or under
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2303
the directories http://www.unicode.org/Public/,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2304
http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2305
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2306
NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2307
INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2308
FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2309
BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2310
AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2311
SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2312
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2313
COPYRIGHT AND PERMISSION NOTICE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2314
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2315
Copyright © 1991-2012 Unicode, Inc. All rights reserved. Distributed under the
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2316
Terms of Use in http://www.unicode.org/copyright.html.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2317
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2318
Permission is hereby granted, free of charge, to any person obtaining a copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2319
of the Unicode data files and any associated documentation (the "Data Files")
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2320
or Unicode software and any associated documentation (the "Software") to deal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2321
in the Data Files or Software without restriction, including without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2322
limitation the rights to use, copy, modify, merge, publish, distribute, and/or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2323
sell copies of the Data Files or Software, and to permit persons to whom the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2324
Data Files or Software are furnished to do so, provided that (a) the above
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2325
copyright notice(s) and this permission notice appear with all copies of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2326
Data Files or Software, (b) both the above copyright notice(s) and this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2327
permission notice appear in associated documentation, and (c) there is clear
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2328
notice in each modified Data File or in the Software as well as in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2329
documentation associated with the Data File(s) or Software that the data or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2330
software has been modified.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2331
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2332
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2333
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2334
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2335
PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2336
THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2337
DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2338
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2339
ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2340
DATA FILES OR SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2341
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2342
Except as contained in this notice, the name of a copyright holder shall not
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2343
be used in advertising or otherwise to promote the sale, use or other dealings
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2344
in these Data Files or Software without prior written authorization of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2345
copyright holder.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2346
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2347
Unicode and the Unicode logo are trademarks of Unicode, Inc. in the United
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2348
States and other countries. All third party trademarks referenced herein are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2349
the property of their respective owners.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2350
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2351
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2352
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2353
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2354
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2355
%% This notice is provided with respect to UPX v3.01, which may be included 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2356
with JRE 8 on Windows.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2357
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2358
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2359
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2360
Use of any of this software is governed by the terms of the license below:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2361
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2362
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2363
                 ooooo     ooo ooooooooo.   ooooooo  ooooo
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2364
                 `888'     `8' `888   `Y88.  `8888    d8'
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2365
                  888       8   888   .d88'    Y888..8P
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2366
                  888       8   888ooo88P'      `8888'
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2367
                  888       8   888            .8PY888.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2368
                  `88.    .8'   888           d8'  `888b
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2369
                    `YbodP'    o888o        o888o  o88888o
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2370
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2371
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2372
                    The Ultimate Packer for eXecutables
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2373
          Copyright (c) 1996-2000 Markus Oberhumer & Laszlo Molnar
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2374
               http://wildsau.idv.uni-linz.ac.at/mfx/upx.html
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2375
                          http://www.nexus.hu/upx
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2376
                            http://upx.tsx.org
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2377
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2378
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2379
PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2380
TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2381
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2382
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2383
ABSTRACT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2384
========
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2385
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2386
   UPX and UCL are copyrighted software distributed under the terms
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2387
   of the GNU General Public License (hereinafter the "GPL").
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2388
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2389
   The stub which is imbedded in each UPX compressed program is part
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2390
   of UPX and UCL, and contains code that is under our copyright. The
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2391
   terms of the GNU General Public License still apply as compressing
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2392
   a program is a special form of linking with our stub.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2393
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2394
   As a special exception we grant the free usage of UPX for all
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2395
   executables, including commercial programs.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2396
   See below for details and restrictions.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2397
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2398
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2399
COPYRIGHT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2400
=========
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2401
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2402
   UPX and UCL are copyrighted software. All rights remain with the authors.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2403
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2404
   UPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2405
   UPX is Copyright (C) 1996-2000 Laszlo Molnar
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2406
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2407
   UCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2408
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2409
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2410
GNU GENERAL PUBLIC LICENSE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2411
==========================
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2412
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2413
   UPX and the UCL library are free software; you can redistribute them
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2414
   and/or modify them under the terms of the GNU General Public License as
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2415
   published by the Free Software Foundation; either version 2 of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2416
   the License, or (at your option) any later version.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2417
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2418
   UPX and UCL are distributed in the hope that they will be useful,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2419
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2420
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2421
   GNU General Public License for more details.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2422
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2423
   You should have received a copy of the GNU General Public License
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2424
   along with this program; see the file COPYING.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2425
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2426
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2427
SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2428
============================================
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2429
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2430
   The stub which is imbedded in each UPX compressed program is part
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2431
   of UPX and UCL, and contains code that is under our copyright. The
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2432
   terms of the GNU General Public License still apply as compressing
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2433
   a program is a special form of linking with our stub.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2434
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2435
   Hereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2436
   permission to freely use and distribute all UPX compressed programs
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2437
   (including commercial ones), subject to the following restrictions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2438
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2439
   1. You must compress your program with a completely unmodified UPX
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2440
      version; either with our precompiled version, or (at your option)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2441
      with a self compiled version of the unmodified UPX sources as
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2442
      distributed by us.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2443
   2. This also implies that the UPX stub must be completely unmodfied, i.e.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2444
      the stub imbedded in your compressed program must be byte-identical
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2445
      to the stub that is produced by the official unmodified UPX version.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2446
   3. The decompressor and any other code from the stub must exclusively get
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2447
      used by the unmodified UPX stub for decompressing your program at
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2448
      program startup. No portion of the stub may get read, copied,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2449
      called or otherwise get used or accessed by your program.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2450
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2451
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2452
ANNOTATIONS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2453
===========
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2454
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2455
  - You can use a modified UPX version or modified UPX stub only for
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2456
    programs that are compatible with the GNU General Public License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2457
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2458
  - We grant you special permission to freely use and distribute all UPX
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2459
    compressed programs. But any modification of the UPX stub (such as,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2460
    but not limited to, removing our copyright string or making your
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2461
    program non-decompressible) will immediately revoke your right to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2462
    use and distribute a UPX compressed program.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2463
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2464
  - UPX is not a software protection tool; by requiring that you use
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2465
    the unmodified UPX version for your proprietary programs we
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2466
    make sure that any user can decompress your program. This protects
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2467
    both you and your users as nobody can hide malicious code -
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2468
    any program that cannot be decompressed is highly suspicious
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2469
    by definition.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2470
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2471
  - You can integrate all or part of UPX and UCL into projects that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2472
    are compatible with the GNU GPL, but obviously you cannot grant
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2473
    any special exceptions beyond the GPL for our code in your project.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2474
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2475
  - We want to actively support manufacturers of virus scanners and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2476
    similar security software. Please contact us if you would like to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2477
    incorporate parts of UPX or UCL into such a product.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2478
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2479
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2480
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2481
Markus F.X.J. Oberhumer                   Laszlo Molnar
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2482
markus.oberhumer@jk.uni-linz.ac.at        ml1050@cdata.tvnet.hu
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2483
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2484
Linz, Austria, 25 Feb 2000
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2485
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2486
Additional License(s)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2487
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2488
The UPX license file is at http://upx.sourceforge.net/upx-license.html.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2489
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2490
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2491
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2492
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2493
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2494
%% This notice is provided with respect to Xfree86-VidMode Extension 1.0,
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2495
which may be included with JRE 8, JDK 8, and OpenJDK 8 on Linux and Solaris.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2496
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2497
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2498
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2499
Version 1.1 of XFree86 ProjectLicence.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2500
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2501
Copyright (C) 1994-2004 The XFree86 Project, Inc.    All rights reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2502
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2503
Permission is hereby granted, free of charge, to any person obtaining a copy of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2504
this software and associated documentation files (the "Software"), to deal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2505
in the Software without restriction, including without limitation the rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2506
to use, copy, modify, merge, publish, distribute, sublicence, and/or sell
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2507
copies of the Software, and to permit persons to whom the Software is furnished
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2508
to do so,subject to the following conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2509
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2510
   1. Redistributions of source code must retain the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2511
   notice,this list of conditions, and the following disclaimer.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2512
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2513
   2. Redistributions in binary form must reproduce the above copyright notice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2514
   this list of conditions and the following disclaimer in the documentation
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2515
   and/or other materials provided with the distribution, and in the same place
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2516
   and form as other copyright, license and disclaimer information.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2517
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2518
   3. The end-user documentation included with the redistribution, if any,must
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2519
   include the following acknowledgment: "This product includes
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2520
   software developed by The XFree86 Project, Inc (http://www.xfree86.org/) and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2521
   its contributors", in the same place and form as other third-party
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2522
   acknowledgments. Alternately, this acknowledgment may appear in the software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2523
   itself, in the same form and location as other such third-party
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2524
   acknowledgments.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2525
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2526
    4. Except as contained in this notice, the name of The XFree86 Project,Inc
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2527
    shall not be used in advertising or otherwise to promote the sale, use
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2528
    or other dealings in this Software without prior written authorization from
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2529
    The XFree86 Project, Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2530
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2531
    THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2532
    WARRANTIES,INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2533
    MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2534
    EVENT SHALL THE XFREE86 PROJECT, INC OR ITS CONTRIBUTORS BE LIABLE FOR ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2535
    DIRECT, INDIRECT, INCIDENTAL,SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2536
    (INCLUDING, BUT NOT LIMITED TO,PROCUREMENT OF SUBSTITUTE GOODS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2537
    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2538
    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2539
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2540
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2541
    DAMAGE.  
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2542
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2543
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2544
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2545
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2546
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2547
%% This notice is provided with respect to X Window System 6.8.2, which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  2548
included with JRE 8, JDK 8, and OpenJDK 8 on Linux and Solaris.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2549
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2550
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2551
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2552
          Licenses
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2553
The X.Org Foundation March 2004
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2554
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2555
1. Introduction
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2556
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2557
The X.org Foundation X Window System distribution is a compilation of code and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2558
documentation from many sources. This document is intended primarily as a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2559
guide to the licenses used in the distribution: you must check each file
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2560
and/or package for precise redistribution terms. None-the-less, this summary
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2561
may be useful to many users. No software incorporating the XFree86 1.1 license
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2562
has been incorporated.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2563
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2564
This document is based on the compilation from XFree86.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2565
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2566
2. XFree86 License
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2567
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2568
XFree86 code without an explicit copyright is covered by the following
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2569
copyright/license:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2570
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2571
Copyright (C) 1994-2003 The XFree86 Project, Inc. All Rights Reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2572
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2573
Permission is hereby granted, free of charge, to any person obtaining a copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2574
of this software and associated documentation files (the "Software"), to deal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2575
in the Software without restriction, including without limitation the rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2576
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2577
copies of the Software, and to permit persons to whom the Software is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2578
furnished to do so, subject to the following conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2579
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2580
The above copyright notice and this permission notice shall be included in all
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2581
copies or substantial portions of the Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2582
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2583
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2584
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2585
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2586
XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2296
a536dae06f52 6695776: corba jscheme jar files in repository could be built from source
tbell
parents: 2
diff changeset
  2587
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
a536dae06f52 6695776: corba jscheme jar files in repository could be built from source
tbell
parents: 2
diff changeset
  2588
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2589
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2590
Except as contained in this notice, the name of the XFree86 Project shall not
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2591
be used in advertising or otherwise to promote the sale, use or other dealings
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2592
in this Software without prior written authorization from the XFree86 Project.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2593
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2594
3. Other Licenses
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2595
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2596
Portions of code are covered by the following licenses/copyrights. See
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2597
individual files for the copyright dates.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2598
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2599
3.1. X/MIT Copyrights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2600
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2601
3.1.1. X Consortium
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2602
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2603
Copyright (C) <date> X Consortium
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2604
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2605
Permission is hereby granted, free of charge, to any person obtaining a copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2606
of this software and associated documentation files (the "Software"), to deal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2607
in the Software without restriction, including without limitation the rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2608
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2609
copies of the Software, and to permit persons to whom the Software is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2610
furnished to do so, subject to the following conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2611
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2612
The above copyright notice and this permission notice shall be included in all
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2613
copies or substantial portions of the Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2614
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2615
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2616
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2617
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2618
CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2619
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2620
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2621
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2622
Except as contained in this notice, the name of the X Consortium shall not be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2623
used in advertising or otherwise to promote the sale, use or other dealings in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2624
this Software without prior written authorization from the X Consortium.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2625
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2626
X Window System is a trademark of X Consortium, Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2627
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2628
3.1.2. The Open Group
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2629
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2630
Copyright <date> The Open Group
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2631
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2632
Permission to use, copy, modify, distribute, and sell this software and its
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2633
documentation for any purpose is hereby granted without fee, provided that the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2634
above copyright notice appear in all copies and that both that copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2635
notice and this permission notice appear in supporting documentation.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2636
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2637
The above copyright notice and this permission notice shall be included in all
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2638
copies or substantial portions of the Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2639
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2640
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2641
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2642
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2643
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2644
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2645
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2646
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2647
Except as contained in this notice, the name of The Open Group shall not be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2648
used in advertising or otherwise to promote the sale, use or other dealings in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2649
this Software without prior written authorization from The Open Group.  3.2.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2650
Berkeley-based copyrights:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2651
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2652
o
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2653
3.2.1. General
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2654
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2655
Redistribution and use in source and binary forms, with or without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2656
modification, are permitted provided that the following conditions are met:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2657
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2658
   1. Redistributions of source code must retain the above copyright notice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2659
   this list of conditions and the following disclaimer.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2660
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2661
   2. Redistributions in binary form must reproduce the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2662
   notice, this list of conditions and the following disclaimer in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2663
   documentation and/or other materials provided with the distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2664
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2665
   3. The name of the author may not be used to endorse or promote products
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2666
   derived from this software without specific prior written permission.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2667
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2668
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2669
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2670
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2671
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2672
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2673
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2674
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2675
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2676
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2677
POSSIBILITY OF SUCH DAMAGE.  3.2.2. UCB/LBL
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2678
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2679
Copyright (c) 1993 The Regents of the University of California. All rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2680
reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2681
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2682
This software was developed by the Computer Systems Engineering group at
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2683
Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and contributed to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2684
Berkeley.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2685
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2686
All advertising materials mentioning features or use of this software must
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2687
display the following acknowledgement: This product includes software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2688
developed by the University of California, Lawrence Berkeley Laboratory.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2689
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2690
Redistribution and use in source and binary forms, with or without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2691
modification, are permitted provided that the following conditions are met:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2692
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2693
   1. Redistributions of source code must retain the above copyright notice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2694
   this list of conditions and the following disclaimer.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2695
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2696
   2. Redistributions in binary form must reproduce the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2697
   notice, this list of conditions and the following disclaimer in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2698
   documentation and/or other materials provided with the distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2699
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2700
   3. All advertising materials mentioning features or use of this software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2701
   must display the following acknowledgement: This product includes software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2702
   developed by the University of California, Berkeley and its contributors.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2703
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2704
   4. Neither the name of the University nor the names of its contributors may
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2705
   be used to endorse or promote products derived from this software without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2706
   specific prior written permission.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2707
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2708
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2709
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2710
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2711
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2712
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2713
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2714
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2715
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2716
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2717
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  3.2.3. The
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2718
NetBSD Foundation, Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2719
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2720
Copyright (c) 2003 The NetBSD Foundation, Inc. All rights reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2721
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2722
This code is derived from software contributed to The NetBSD Foundation by Ben
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2723
Collver <collver1@attbi.com>
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2724
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2725
Redistribution and use in source and binary forms, with or without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2726
modification, are permitted provided that the following conditions are met:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2727
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2728
   1. Redistributions of source code must retain the above copyright notice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2729
   this list of conditions and the following disclaimer.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2730
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2731
   2. Redistributions in binary form must reproduce the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2732
   notice, this list of conditions and the following disclaimer in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2733
   documentation and/or other materials provided with the distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2734
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2735
   3. All advertising materials mentioning features or use of this software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2736
   must display the following acknowledgement: This product includes software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2737
   developed by the NetBSD Foundation, Inc. and its contributors.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2738
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2739
   4. Neither the name of The NetBSD Foundation nor the names of its
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2740
   contributors may be used to endorse or promote products derived from this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2741
   software without specific prior written permission.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2742
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2743
THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS ``AS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2744
IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2745
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2746
DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2747
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2748
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2749
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2750
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2751
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2752
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  3.2.4. Theodore
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2753
Ts'o.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2754
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2755
Copyright Theodore Ts'o, 1994, 1995, 1996, 1997, 1998, 1999. All rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2756
reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2757
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2758
Redistribution and use in source and binary forms, with or without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2759
modification, are permitted provided that the following conditions are met:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2760
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2761
   1. Redistributions of source code must retain the above copyright notice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2762
   and the entire permission notice in its entirety, including the disclaimer
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2763
   of warranties.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2764
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2765
   2. Redistributions in binary form must reproduce the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2766
   notice, this list of conditions and the following disclaimer in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2767
   documentation and/or other materials provided with the distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2768
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2769
   3. he name of the author may not be used to endorse or promote products
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2770
   derived from this software without specific prior written permission.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2771
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2772
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2773
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2774
FITNESS FOR A PARTICULAR PURPOSE, ALL OF WHICH ARE HEREBY DISCLAIMED. IN NO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2775
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2776
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2777
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2778
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2779
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2780
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2781
POSSIBILITY OF SUCH DAMAGE.  3.2.5. Theo de Raadt and Damien Miller
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2782
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2783
Copyright (c) 1995,1999 Theo de Raadt. All rights reserved. Copyright (c)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2784
2001-2002 Damien Miller. All rights reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2785
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2786
Redistribution and use in source and binary forms, with or without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2787
modification, are permitted provided that the following conditions are met:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2788
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2789
   1. Redistributions of source code must retain the above copyright notice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2790
   this list of conditions and the following disclaimer.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2791
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2792
   2. Redistributions in binary form must reproduce the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2793
   notice, this list of conditions and the following disclaimer in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2794
   documentation and/or other materials provided with the distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2795
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2796
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2797
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2798
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2799
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2800
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2801
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2802
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2803
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2804
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2805
POSSIBILITY OF SUCH DAMAGE.  3.2.6. Todd C. Miller
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2806
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2807
Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2808
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2809
Permission to use, copy, modify, and distribute this software for any purpose
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2810
with or without fee is hereby granted, provided that the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2811
notice and this permission notice appear in all copies.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2812
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2813
THE SOFTWARE IS PROVIDED "AS IS" AND TODD C. MILLER DISCLAIMS ALL WARRANTIES
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2814
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2815
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL TODD C. MILLER BE LIABLE FOR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2816
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2817
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2818
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2819
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.  3.2.7. Thomas
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2820
Winischhofer
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2821
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2822
Copyright (C) 2001-2004 Thomas Winischhofer
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2823
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2824
Redistribution and use in source and binary forms, with or without
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2825
modification, are permitted provided that the following conditions are met:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2826
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2827
   1. Redistributions of source code must retain the above copyright notice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2828
   this list of conditions and the following disclaimer.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2829
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2830
   2. Redistributions in binary form must reproduce the above copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2831
   notice, this list of conditions and the following disclaimer in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2832
   documentation and/or other materials provided with the distribution.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2833
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2834
   3. The name of the author may not be used to endorse or promote products
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2835
   derived from this software without specific prior written permission.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2836
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2837
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESSED OR IMPLIED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2838
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2839
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2840
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2841
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2842
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2843
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2844
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2845
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2846
POSSIBILITY OF SUCH DAMAGE.  3.3. NVIDIA Corp
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2847
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2848
Copyright (c) 1996 NVIDIA, Corp. All rights reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2849
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2850
NOTICE TO USER: The source code is copyrighted under U.S. and international
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2851
laws. NVIDIA, Corp. of Sunnyvale, California owns the copyright and as design
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2852
patents pending on the design and interface of the NV chips. Users and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2853
possessors of this source code are hereby granted a nonexclusive, royalty-free
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2854
copyright and design patent license to use this code in individual and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2855
commercial software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2856
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2857
Any use of this source code must include, in the user documentation and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2858
internal comments to the code, notices to the end user as follows:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2859
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2860
Copyright (c) 1996 NVIDIA, Corp. NVIDIA design patents pending in the U.S. and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2861
foreign countries.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2862
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2863
NVIDIA, CORP. MAKES NO REPRESENTATION ABOUT THE SUITABILITY OF THIS SOURCE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2864
CODE FOR ANY PURPOSE. IT IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2865
WARRANTY OF ANY KIND. NVIDIA, CORP. DISCLAIMS ALL WARRANTIES WITH REGARD TO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2866
THIS SOURCE CODE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2867
FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL NVIDIA, CORP. BE LIABLE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2868
FOR ANY SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2869
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2870
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2871
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOURCE CODE.  3.4. GLX Public
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2872
License
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2873
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2874
GLX PUBLIC LICENSE (Version 1.0 (2/11/99)) ("License")
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2875
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2876
Subject to any third party claims, Silicon Graphics, Inc. ("SGI") hereby
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2877
grants permission to Recipient (defined below), under Recipient's copyrights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2878
in the Original Software (defined below), to use, copy, modify, merge,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2879
publish, distribute, sublicense and/or sell copies of Subject Software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2880
(defined below), and to permit persons to whom the Subject Software is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2881
furnished in accordance with this License to do the same, subject to all of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2882
the following terms and conditions, which Recipient accepts by engaging in any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2883
such use, copying, modifying, merging, publishing, distributing, sublicensing
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2884
or selling:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2885
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2886
1. Definitions.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2887
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2888
    (a) "Original Software" means source code of computer software code which
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2889
    is described in Exhibit A as Original Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2890
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2891
    (b) "Modifications" means any addition to or deletion from the substance
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2892
    or structure of either the Original Software or any previous
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2893
    Modifications. When Subject Software is released as a series of files, a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2894
    Modification means (i) any addition to or deletion from the contents of a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2895
    file containing Original Software or previous Modifications and (ii) any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2896
    new file that contains any part of the Original Code or previous
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2897
    Modifications.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2898
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2899
    (c) "Subject Software" means the Original Software or Modifications or the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2900
    combination of the Original Software and Modifications, or portions of any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2901
    of the foregoing.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2902
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2903
    (d) "Recipient" means an individual or a legal entity exercising rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2904
    under, and complying with all of the terms of, this License. For legal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2905
    entities, "Recipient" includes any entity which controls, is controlled
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2906
    by, or is under common control with Recipient. For purposes of this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2907
    definition, "control" of an entity means (a) the power, direct or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2908
    indirect, to direct or manage such entity, or (b) ownership of fifty
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2909
    percent (50%) or more of the outstanding shares or beneficial ownership of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2910
    such entity.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2911
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2912
2. Redistribution of Source Code Subject to These Terms. Redistributions of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2913
Subject Software in source code form must retain the notice set forth in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2914
Exhibit A, below, in every file. A copy of this License must be included in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2915
any documentation for such Subject Software where the recipients' rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2916
relating to Subject Software are described. Recipient may distribute the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2917
source code version of Subject Software under a license of Recipient's choice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2918
which may contain terms different from this License, provided that (i)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2919
Recipient is in compliance with the terms of this License, and (ii) the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2920
license terms include this Section 2 and Sections 3, 4, 7, 8, 10, 12 and 13 of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2921
this License, which terms may not be modified or superseded by any other terms
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2922
of such license. If Recipient distributes the source code version under a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2923
different license Recipient must make it absolutely clear that any terms which
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2924
differ from this License are offered by Recipient alone, not by SGI. Recipient
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2925
hereby agrees to indemnify SGI for any liability incurred by SGI as a result
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2926
of any such terms Recipient offers.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2927
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2928
3. Redistribution in Executable Form. The notice set forth in Exhibit A must
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2929
be conspicuously included in any notice in an executable version of Subject
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2930
Software, related documentation or collateral in which Recipient describes the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2931
user's rights relating to the Subject Software. Recipient may distribute the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2932
executable version of Subject Software under a license of Recipient's choice,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2933
which may contain terms different from this License, provided that (i)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2934
Recipient is in compliance with the terms of this License, and (ii) the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2935
license terms include this Section 3 and Sections 4, 7, 8, 10, 12 and 13 of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2936
this License, which terms may not be modified or superseded by any other terms
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2937
of such license. If Recipient distributes the executable version under a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2938
different license Recipient must make it absolutely clear that any terms which
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2939
differ from this License are offered by Recipient alone, not by SGI. Recipient
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2940
hereby agrees to indemnify SGI for any liability incurred by SGI as a result
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2941
of any such terms Recipient offers.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2942
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2943
4. Termination. This License and the rights granted hereunder will terminate
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2944
automatically if Recipient fails to comply with terms herein and fails to cure
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2945
such breach within 30 days of the breach. Any sublicense to the Subject
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2946
Software which is properly granted shall survive any termination of this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2947
License absent termination by the terms of such sublicense. Provisions which,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2948
by their nature, must remain in effect beyond the termination of this License
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2949
shall survive.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2950
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2951
5. No Trademark Rights. This License does not grant any rights to use any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2952
trade name, trademark or service mark whatsoever. No trade name, trademark or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2953
service mark of SGI may be used to endorse or promote products derived from
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2954
the Subject Software without prior written permission of SGI.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2955
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2956
6. No Other Rights. This License does not grant any rights with respect to the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2957
OpenGL API or to any software or hardware implementation thereof or to any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2958
other software whatsoever, nor shall any other rights or licenses not
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2959
expressly granted hereunder arise by implication, estoppel or otherwise with
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2960
respect to the Subject Software. Title to and ownership of the Original
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2961
Software at all times remains with SGI. All rights in the Original Software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2962
not expressly granted under this License are reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2963
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2964
7. Compliance with Laws; Non-Infringement. Recipient shall comply with all
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2965
applicable laws and regulations in connection with use and distribution of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2966
Subject Software, including but not limited to, all export and import control
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2967
laws and regulations of the U.S. government and other countries. Recipient may
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2968
not distribute Subject Software that (i) in any way infringes (directly or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2969
contributorily) the rights (including patent, copyright, trade secret,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2970
trademark or other intellectual property rights of any kind) of any other
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2971
person or entity or (ii) breaches any representation or warranty, express,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2972
implied or statutory, which under any applicable law it might be deemed to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2973
have been distributed.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2974
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2975
8. Claims of Infringement. If Recipient at any time has knowledge of any one
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2976
or more third party claims that reproduction, modification, use, distribution,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2977
import or sale of Subject Software (including particular functionality or code
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2978
incorporated in Subject Software) infringes the third party's intellectual
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2979
property rights, Recipient must place in a well-identified web page bearing
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2980
the title "LEGAL" a description of each such claim and a description of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2981
party making each such claim in sufficient detail that a user of the Subject
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2982
Software will know whom to contact regarding the claim. Also, upon gaining
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2983
such knowledge of any such claim, Recipient must conspicuously include the URL
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2984
for such web page in the Exhibit A notice required under Sections 2 and 3,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2985
above, and in the text of any related documentation, license agreement or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2986
collateral in which Recipient describes end user's rights relating to the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2987
Subject Software. If Recipient obtains such knowledge after it makes Subject
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2988
Software available to any other person or entity, Recipient shall take other
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2989
steps (such as notifying appropriate mailing lists or newsgroups) reasonably
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2990
calculated to inform those who received the Subject Software that new
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2991
knowledge has been obtained.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2992
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2993
9. DISCLAIMER OF WARRANTY. SUBJECT SOFTWARE IS PROVIDED ON AN "AS IS" BASIS,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2994
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2995
LIMITATION, WARRANTIES THAT THE SUBJECT SOFTWARE IS FREE OF DEFECTS,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2996
MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON- INFRINGING. SGI ASSUMES NO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2997
RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD ANY SOFTWARE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2998
PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  2999
SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3000
ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY SUBJECT SOFTWARE IS AUTHORIZED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3001
HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3002
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3003
10. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3004
WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY),
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3005
CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3006
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3007
CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3008
STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3009
COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3010
THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3011
TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3012
THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3013
ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3014
THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3015
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3016
11. Indemnity. Recipient shall be solely responsible for damages arising,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3017
directly or indirectly, out of its utilization of rights under this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3018
Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. from
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3019
and against any loss, liability, damages, costs or expenses (including the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3020
payment of reasonable attorneys fees) arising out of Recipient's use,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3021
modification, reproduction and distribution of the Subject Software or out of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3022
any representation or warranty made by Recipient.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3023
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3024
12. U.S. Government End Users. The Subject Software is a "commercial item"
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3025
consisting of "commercial computer software" as such terms are defined in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3026
title 48 of the Code of Federal Regulations and all U.S. Government End Users
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3027
acquire only the rights set forth in this License and are subject to the terms
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3028
of this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3029
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3030
13. Miscellaneous. This License represents the complete agreement concerning
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3031
subject matter hereof. If any provision of this License is held to be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3032
unenforceable, such provision shall be reformed so as to achieve as nearly as
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3033
possible the same economic effect as the original provision and the remainder
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3034
of this License will remain in effect. This License shall be governed by and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3035
construed in accordance with the laws of the United States and the State of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3036
California as applied to agreements entered into and to be performed entirely
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3037
within California between California residents. Any litigation relating to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3038
this License shall be subject to the exclusive jurisdiction of the Federal
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3039
Courts of the Northern District of California (or, absent subject matter
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3040
jurisdiction in such courts, the courts of the State of California), with
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3041
venue lying exclusively in Santa Clara County, California, with the losing
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3042
party responsible for costs, including without limitation, court costs and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3043
reasonable attorneys fees and expenses. The application of the United Nations
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3044
Convention on Contracts for the International Sale of Goods is expressly
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3045
excluded. Any law or regulation which provides that the language of a contract
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3046
shall be construed against the drafter shall not apply to this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3047
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3048
Exhibit A
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3049
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3050
The contents of this file are subject to Sections 2, 3, 4, 7, 8, 10, 12 and 13
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3051
of the GLX Public License Version 1.0 (the "License"). You may not use this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3052
file except in compliance with those sections of the License. You may obtain a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3053
copy of the License at Silicon Graphics, Inc., attn: Legal Services, 2011 N.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3054
Shoreline Blvd., Mountain View, CA 94043 or at
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3055
http://www.sgi.com/software/opensource/glx/license.html.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3056
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3057
Software distributed under the License is distributed on an "AS IS" basis. ALL
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3058
WARRANTIES ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3059
WARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE OR OF NON-
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3060
INFRINGEMENT. See the License for the specific language governing rights and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3061
limitations under the License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3062
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3063
The Original Software is GLX version 1.2 source code, released February, 1999.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3064
The developer of the Original Software is Silicon Graphics, Inc. Those
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3065
portions of the Subject Software created by Silicon Graphics, Inc. are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3066
Copyright (c) 1991-9 Silicon Graphics, Inc. All Rights Reserved.  3.5. CID
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3067
Font Code Public License
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3068
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3069
CID FONT CODE PUBLIC LICENSE (Version 1.0 (3/31/99))("License")
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3070
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3071
Subject to any applicable third party claims, Silicon Graphics, Inc. ("SGI")
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3072
hereby grants permission to Recipient (defined below), under SGI's copyrights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3073
in the Original Software (defined below), to use, copy, modify, merge,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3074
publish, distribute, sublicense and/or sell copies of Subject Software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3075
(defined below) in both source code and executable form, and to permit persons
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3076
to whom the Subject Software is furnished in accordance with this License to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3077
do the same, subject to all of the following terms and conditions, which
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3078
Recipient accepts by engaging in any such use, copying, modifying, merging,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3079
publication, distributing, sublicensing or selling:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3080
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3081
1. Definitions.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3082
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3083
    a. "Original Software" means source code of computer software code that is
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3084
    described in Exhibit A as Original Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3085
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3086
    b. "Modifications" means any addition to or deletion from the substance or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3087
    structure of either the Original Software or any previous Modifications.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3088
    When Subject Software is released as a series of files, a Modification
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3089
    means (i) any addition to or deletion from the contents of a file
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3090
    containing Original Software or previous Modifications and (ii) any new
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3091
    file that contains any part of the Original Code or previous
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3092
    Modifications.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3093
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3094
    c. "Subject Software" means the Original Software or Modifications or the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3095
    combination of the Original Software and Modifications, or portions of any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3096
    of the foregoing.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3097
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3098
    d. "Recipient" means an individual or a legal entity exercising rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3099
    under the terms of this License. For legal entities, "Recipient" includes
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3100
    any entity that controls, is controlled by, or is under common control
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3101
    with Recipient. For purposes of this definition, "control" of an entity
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3102
    means (i) the power, direct or indirect, to direct or manage such entity,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3103
    or (ii) ownership of fifty percent (50%) or more of the outstanding shares
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3104
    or beneficial ownership of such entity.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3105
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3106
    e. "Required Notice" means the notice set forth in Exhibit A to this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3107
    License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3108
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3109
    f. "Accompanying Technology" means any software or other technology that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3110
    is not a Modification and that is distributed or made publicly available
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3111
    by Recipient with the Subject Software. Separate software files that do
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3112
    not contain any Original Software or any previous Modification shall not
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3113
    be deemed a Modification, even if such software files are aggregated as
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3114
    part of a product, or in any medium of storage, with any file that does
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3115
    contain Original Software or any previous Modification.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3116
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3117
2. License Terms. All distribution of the Subject Software must be made
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3118
subject to the terms of this License. A copy of this License and the Required
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3119
Notice must be included in any documentation for Subject Software where
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3120
Recipient's rights relating to Subject Software and/or any Accompanying
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3121
Technology are described. Distributions of Subject Software in source code
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3122
form must also include the Required Notice in every file distributed. In
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3123
addition, a ReadMe file entitled "Important Legal Notice" must be distributed
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3124
with each distribution of one or more files that incorporate Subject Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3125
That file must be included with distributions made in both source code and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3126
executable form. A copy of the License and the Required Notice must be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3127
included in that file. Recipient may distribute Accompanying Technology under
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3128
a license of Recipient's choice, which may contain terms different from this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3129
License, provided that (i) Recipient is in compliance with the terms of this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3130
License, (ii) such other license terms do not modify or supersede the terms of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3131
this License as applicable to the Subject Software, (iii) Recipient hereby
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3132
indemnifies SGI for any liability incurred by SGI as a result of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3133
distribution of Accompanying Technology or the use of other license terms.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3134
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3135
3. Termination. This License and the rights granted hereunder will terminate
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3136
automatically if Recipient fails to comply with terms herein and fails to cure
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3137
such breach within 30 days of the breach. Any sublicense to the Subject
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3138
Software that is properly granted shall survive any termination of this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3139
License absent termination by the terms of such sublicense. Provisions which,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3140
by their nature, must remain in effect beyond the termination of this License
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3141
shall survive.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3142
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3143
4. Trademark Rights. This License does not grant any rights to use any trade
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3144
name, trademark or service mark whatsoever. No trade name, trademark or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3145
service mark of SGI may be used to endorse or promote products derived from or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3146
incorporating any Subject Software without prior written permission of SGI.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3147
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3148
5. No Other Rights. No rights or licenses not expressly granted hereunder
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3149
shall arise by implication, estoppel or otherwise. Title to and ownership of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3150
the Original Software at all times remains with SGI. All rights in the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3151
Original Software not expressly granted under this License are reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3152
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3153
6. Compliance with Laws; Non-Infringement. Recipient shall comply with all
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3154
applicable laws and regulations in connection with use and distribution of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3155
Subject Software, including but not limited to, all export and import control
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3156
laws and regulations of the U.S. government and other countries. Recipient may
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3157
not distribute Subject Software that (i) in any way infringes (directly or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3158
contributorily) the rights (including patent, copyright, trade secret,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3159
trademark or other intellectual property rights of any kind) of any other
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3160
person or entity, or (ii) breaches any representation or warranty, express,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3161
implied or statutory, which under any applicable law it might be deemed to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3162
have been distributed.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3163
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3164
7. Claims of Infringement. If Recipient at any time has knowledge of any one
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3165
or more third party claims that reproduction, modification, use, distribution,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3166
import or sale of Subject Software (including particular functionality or code
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3167
incorporated in Subject Software) infringes the third party's intellectual
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3168
property rights, Recipient must place in a well-identified web page bearing
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3169
the title "LEGAL" a description of each such claim and a description of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3170
party making each such claim in sufficient detail that a user of the Subject
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3171
Software will know whom to contact regarding the claim. Also, upon gaining
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3172
such knowledge of any such claim, Recipient must conspicuously include the URL
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3173
for such web page in the Required Notice, and in the text of any related
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3174
documentation, license agreement or collateral in which Recipient describes
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3175
end user's rights relating to the Subject Software. If Recipient obtains such
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3176
knowledge after it makes Subject Software available to any other person or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3177
entity, Recipient shall take other steps (such as notifying appropriate
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3178
mailing lists or newsgroups) reasonably calculated to provide such knowledge
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3179
to those who received the Subject Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3180
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3181
8. DISCLAIMER OF WARRANTY. SUBJECT SOFTWARE IS PROVIDED ON AN "AS IS" BASIS,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3182
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3183
LIMITATION, WARRANTIES THAT THE SUBJECT SOFTWARE IS FREE OF DEFECTS,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3184
MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. SGI ASSUMES NO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3185
RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD ANY SOFTWARE
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3186
PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3187
SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3188
ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY SUBJECT SOFTWARE IS AUTHORIZED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3189
HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3190
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3191
9. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3192
WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY),
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3193
CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY CLAIM,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3194
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3195
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SUBJECT SOFTWARE OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3196
THE USE OR OTHER DEALINGS IN THE SUBJECT SOFTWARE. SOME JURISDICTIONS DO NOT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3197
ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES, SO THIS EXCLUSION AND
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3198
LIMITATION MAY NOT APPLY TO RECIPIENT TO THE EXTENT SO DISALLOWED.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3199
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3200
10. Indemnity. Recipient shall be solely responsible for damages arising,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3201
directly or indirectly, out of its utilization of rights under this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3202
Recipient will defend, indemnify and hold SGI and its successors and assigns
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3203
harmless from and against any loss, liability, damages, costs or expenses
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3204
(including the payment of reasonable attorneys fees) arising out of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3205
(Recipient's use, modification, reproduction and distribution of the Subject
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3206
Software or out of any representation or warranty made by Recipient.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3207
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3208
11. U.S. Government End Users. The Subject Software is a "commercial item"
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3209
consisting of "commercial computer software" as such terms are defined in
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3210
title 48 of the Code of Federal Regulations and all U.S. Government End Users
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3211
acquire only the rights set forth in this License and are subject to the terms
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3212
of this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3213
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3214
12. Miscellaneous. This License represents the complete agreement concerning
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3215
subject matter hereof. If any provision of this License is held to be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3216
unenforceable by any judicial or administrative authority having proper
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3217
jurisdiction with respect thereto, such provision shall be reformed so as to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3218
achieve as nearly as possible the same economic effect as the original
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3219
provision and the remainder of this License will remain in effect. This
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3220
License shall be governed by and construed in accordance with the laws of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3221
United States and the State of California as applied to agreements entered
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3222
into and to be performed entirely within California between California
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3223
residents. Any litigation relating to this License shall be subject to the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3224
exclusive jurisdiction of the Federal Courts of the Northern District of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3225
California (or, absent subject matter jurisdiction in such courts, the courts
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3226
of the State of California), with venue lying exclusively in Santa Clara
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3227
County, California, with the losing party responsible for costs, including
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3228
without limitation, court costs and reasonable attorneys fees and expenses.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3229
The application of the United Nations Convention on Contracts for the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3230
International Sale of Goods is expressly excluded. Any law or regulation that
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3231
provides that the language of a contract shall be construed against the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3232
drafter shall not apply to this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3233
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3234
Exhibit A
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3235
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3236
Copyright (c) 1994-1999 Silicon Graphics, Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3237
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3238
The contents of this file are subject to the CID Font Code Public License
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3239
Version 1.0 (the "License"). You may not use this file except in compliance
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3240
with the License. You may obtain a copy of the License at Silicon Graphics,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3241
Inc., attn: Legal Services, 2011 N. Shoreline Blvd., Mountain View, CA 94043
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3242
or at http://www.sgi.com/software/opensource/cid/license.html
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3243
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3244
Software distributed under the License is distributed on an "AS IS" basis. ALL
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3245
WARRANTIES ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3246
WARRANTIES OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE OR OF
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3247
NON-INFRINGEMENT. See the License for the specific language governing rights
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3248
and limitations under the License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3249
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3250
The Original Software (as defined in the License) is CID font code that was
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3251
developed by Silicon Graphics, Inc. Those portions of the Subject Software (as
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3252
defined in the License) that were created by Silicon Graphics, Inc. are
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3253
Copyright (c) 1994-1999 Silicon Graphics, Inc. All Rights Reserved.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3254
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3255
[NOTE: When using this text in connection with Subject Software delivered
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3256
solely in object code form, Recipient may replace the words "this file" with
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3257
"this software" in both the first and second sentences.] 3.6. Bitstream Vera
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3258
Fonts Copyright
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3259
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3260
The fonts have a generous copyright, allowing derivative works (as long as
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3261
"Bitstream" or "Vera" are not in the names), and full redistribution (so long
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3262
as they are not *sold* by themselves). They can be be bundled, redistributed
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3263
and sold with any software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3264
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3265
The fonts are distributed under the following copyright:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3266
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3267
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3268
trademark of Bitstream, Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3269
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3270
Permission is hereby granted, free of charge, to any person obtaining a copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3271
of the fonts accompanying this license ("Fonts") and associated documentation
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3272
files (the "Font Software"), to reproduce and distribute the Font Software,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3273
including without limitation the rights to use, copy, merge, publish,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3274
distribute, and/or sell copies of the Font Software, and to permit persons to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3275
whom the Font Software is furnished to do so, subject to the following
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3276
conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3277
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3278
The above copyright and trademark notices and this permission notice shall be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3279
included in all copies of one or more of the Font Software typefaces.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3280
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3281
The Font Software may be modified, altered, or added to, and in particular the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3282
designs of glyphs or characters in the Fonts may be modified and additional
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3283
glyphs or characters may be added to the Fonts, only if the fonts are renamed
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3284
to names not containing either the words "Bitstream" or the word "Vera".
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3285
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3286
This License becomes null and void to the extent applicable to Fonts or Font
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3287
Software that has been modified and is distributed under the "Bitstream Vera"
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3288
names.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3289
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3290
The Font Software may be sold as part of a larger software package but no copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3291
of one or more of the Font Software typefaces may be sold by itself.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3292
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3293
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3294
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3295
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3296
TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3297
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3298
SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3299
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3300
USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3301
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3302
Except as contained in this notice, the names of Gnome, the Gnome Foundation,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3303
and Bitstream Inc., shall not be used in advertising or otherwise to promote
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3304
the sale, use or other dealings in this Font Software without prior written
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3305
authorization from the Gnome Foundation or Bitstream Inc., respectively. For
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3306
further information, contact: fonts at gnome dot org.  3.7. Bigelow & Holmes
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3307
Inc and URW++ GmbH Luxi font license
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3308
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3309
Luxi fonts copyright (c) 2001 by Bigelow & Holmes Inc. Luxi font instruction
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3310
code copyright (c) 2001 by URW++ GmbH. All Rights Reserved. Luxi is a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3311
registered trademark of Bigelow & Holmes Inc.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3312
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3313
Permission is hereby granted, free of charge, to any person obtaining a copy
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3314
of these Fonts and associated documentation files (the "Font Software"), to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3315
deal in the Font Software, including without limitation the rights to use,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3316
copy, merge, publish, distribute, sublicense, and/or sell copies of the Font
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3317
Software, and to permit persons to whom the Font Software is furnished to do
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3318
so, subject to the following conditions:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3319
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3320
The above copyright and trademark notices and this permission notice shall be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3321
included in all copies of one or more of the Font Software.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3322
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3323
The Font Software may not be modified, altered, or added to, and in particular
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3324
the designs of glyphs or characters in the Fonts may not be modified nor may
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3325
additional glyphs or characters be added to the Fonts. This License becomes
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3326
null and void when the Fonts or Font Software have been modified.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3327
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3328
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3329
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3330
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3331
TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BIGELOW & HOLMES INC. OR URW++
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3332
GMBH. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3333
GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3334
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3335
INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3336
SOFTWARE.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3337
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3338
Except as contained in this notice, the names of Bigelow & Holmes Inc. and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3339
URW++ GmbH. shall not be used in advertising or otherwise to promote the sale,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3340
use or other dealings in this Font Software without prior written
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3341
authorization from Bigelow & Holmes Inc. and URW++ GmbH.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3342
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3343
For further information, contact:
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3344
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3345
info@urwpp.de or design@bigelowandholmes.com
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3346
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3347
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3348
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3349
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3350
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3351
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  3352
%% This notice is provided with respect to zlib v1.2.5, which may be included 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  3353
with JRE 8, JDK 8, and OpenJDK 8.
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3354
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3355
--- begin of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3356
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  3357
  version 1.2.5, July 18th, 2005
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3358
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3359
  Copyright (C) 1995-2005 Jean-loup Gailly and Mark Adler
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3360
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3361
  This software is provided 'as-is', without any express or implied
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3362
  warranty.  In no event will the authors be held liable for any damages
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3363
  arising from the use of this software.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3364
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3365
  Permission is granted to anyone to use this software for any purpose,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3366
  including commercial applications, and to alter it and redistribute it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3367
  freely, subject to the following restrictions:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3368
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3369
  1. The origin of this software must not be misrepresented; you must not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3370
     claim that you wrote the original software. If you use this software
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3371
     in a product, an acknowledgment in the product documentation would be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3372
     appreciated but is not required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3373
  2. Altered source versions must be plainly marked as such, and must not be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3374
     misrepresented as being the original software.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3375
  3. This notice may not be removed or altered from any source distribution.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3376
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3377
  Jean-loup Gailly        Mark Adler
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3378
  jloup@gzip.org          madler@alumni.caltech.edu
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3379
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3380
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3381
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3382
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3383
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  3384
%% This notice is provided with respect to the following which may be 
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  3385
included with JRE 8, JDK 8, and OpenJDK 8, except where noted:
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  3386
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  3387
  Apache Commons Math 2.2
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  3388
  Apache Derby 10.10.1.2        [included with JDK 8]
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3389
  Apache Jakarta BCEL 5.2 
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3390
  Apache Jakarta Regexp 1.4 
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  3391
  Apache Santuario XML Security for Java 1.5.4
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3392
  Apache Xalan-Java 2.7.1 
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  3393
  Apache Xerces Java 2.10.0 
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3394
  Apache XML Resolver 1.1 
22987
c1ed1403241e 7129980: Third Party License Readme update for JDK8
jeff
parents: 21400
diff changeset
  3395
  Dynalink 0.5
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3396
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3397
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3398
--- begin of LICENSE ---
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3399
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3400
                                 Apache License
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3401
                           Version 2.0, January 2004
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3402
                        http://www.apache.org/licenses/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3403
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3404
   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3405
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3406
   1. Definitions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3407
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3408
      "License" shall mean the terms and conditions for use, reproduction,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3409
      and distribution as defined by Sections 1 through 9 of this document.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3410
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3411
      "Licensor" shall mean the copyright owner or entity authorized by
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3412
      the copyright owner that is granting the License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3413
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3414
      "Legal Entity" shall mean the union of the acting entity and all
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3415
      other entities that control, are controlled by, or are under common
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3416
      control with that entity. For the purposes of this definition,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3417
      "control" means (i) the power, direct or indirect, to cause the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3418
      direction or management of such entity, whether by contract or
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3419
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3420
      outstanding shares, or (iii) beneficial ownership of such entity.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3421
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3422
      "You" (or "Your") shall mean an individual or Legal Entity
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3423
      exercising permissions granted by this License.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3424
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3425
      "Source" form shall mean the preferred form for making modifications,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3426
      including but not limited to software source code, documentation
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3427
      source, and configuration files.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3428
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3429
      "Object" form shall mean any form resulting from mechanical
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3430
      transformation or translation of a Source form, including but
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3431
      not limited to compiled object code, generated documentation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3432
      and conversions to other media types.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3433
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3434
      "Work" shall mean the work of authorship, whether in Source or
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3435
      Object form, made available under the License, as indicated by a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3436
      copyright notice that is included in or attached to the work
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3437
      (an example is provided in the Appendix below).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3438
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3439
      "Derivative Works" shall mean any work, whether in Source or Object
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3440
      form, that is based on (or derived from) the Work and for which the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3441
      editorial revisions, annotations, elaborations, or other modifications
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3442
      represent, as a whole, an original work of authorship. For the purposes
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3443
      of this License, Derivative Works shall not include works that remain
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3444
      separable from, or merely link (or bind by name) to the interfaces of,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3445
      the Work and Derivative Works thereof.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3446
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3447
      "Contribution" shall mean any work of authorship, including
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3448
      the original version of the Work and any modifications or additions
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3449
      to that Work or Derivative Works thereof, that is intentionally
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3450
      submitted to Licensor for inclusion in the Work by the copyright owner
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3451
      or by an individual or Legal Entity authorized to submit on behalf of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3452
      the copyright owner. For the purposes of this definition, "submitted"
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3453
      means any form of electronic, verbal, or written communication sent
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3454
      to the Licensor or its representatives, including but not limited to
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3455
      communication on electronic mailing lists, source code control systems,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3456
      and issue tracking systems that are managed by, or on behalf of, the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3457
      Licensor for the purpose of discussing and improving the Work, but
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3458
      excluding communication that is conspicuously marked or otherwise
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3459
      designated in writing by the copyright owner as "Not a Contribution."
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3460
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3461
      "Contributor" shall mean Licensor and any individual or Legal Entity
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3462
      on behalf of whom a Contribution has been received by Licensor and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3463
      subsequently incorporated within the Work.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3464
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3465
   2. Grant of Copyright License. Subject to the terms and conditions of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3466
      this License, each Contributor hereby grants to You a perpetual,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3467
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3468
      copyright license to reproduce, prepare Derivative Works of,
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3469
      publicly display, publicly perform, sublicense, and distribute the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3470
      Work and such Derivative Works in Source or Object form.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3471
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3472
   3. Grant of Patent License. Subject to the terms and conditions of
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3473
      this License, each Contributor hereby grants to You a perpetual,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3474
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3475
      (except as stated in this section) patent license to make, have made,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3476
      use, offer to sell, sell, import, and otherwise transfer the Work,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3477
      where such license applies only to those patent claims licensable
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3478
      by such Contributor that are necessarily infringed by their
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3479
      Contribution(s) alone or by combination of their Contribution(s)
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3480
      with the Work to which such Contribution(s) was submitted. If You
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3481
      institute patent litigation against any entity (including a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3482
      cross-claim or counterclaim in a lawsuit) alleging that the Work
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3483
      or a Contribution incorporated within the Work constitutes direct
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3484
      or contributory patent infringement, then any patent licenses
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3485
      granted to You under this License for that Work shall terminate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3486
      as of the date such litigation is filed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3487
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3488
   4. Redistribution. You may reproduce and distribute copies of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3489
      Work or Derivative Works thereof in any medium, with or without
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3490
      modifications, and in Source or Object form, provided that You
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3491
      meet the following conditions:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3492
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3493
      (a) You must give any other recipients of the Work or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3494
          Derivative Works a copy of this License; and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3495
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3496
      (b) You must cause any modified files to carry prominent notices
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3497
          stating that You changed the files; and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3498
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3499
      (c) You must retain, in the Source form of any Derivative Works
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3500
          that You distribute, all copyright, patent, trademark, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3501
          attribution notices from the Source form of the Work,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3502
          excluding those notices that do not pertain to any part of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3503
          the Derivative Works; and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3504
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3505
      (d) If the Work includes a "NOTICE" text file as part of its
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3506
          distribution, then any Derivative Works that You distribute must
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3507
          include a readable copy of the attribution notices contained
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3508
          within such NOTICE file, excluding those notices that do not
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3509
          pertain to any part of the Derivative Works, in at least one
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3510
          of the following places: within a NOTICE text file distributed
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3511
          as part of the Derivative Works; within the Source form or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3512
          documentation, if provided along with the Derivative Works; or,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3513
          within a display generated by the Derivative Works, if and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3514
          wherever such third-party notices normally appear. The contents
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3515
          of the NOTICE file are for informational purposes only and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3516
          do not modify the License. You may add Your own attribution
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3517
          notices within Derivative Works that You distribute, alongside
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3518
          or as an addendum to the NOTICE text from the Work, provided
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3519
          that such additional attribution notices cannot be construed
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3520
          as modifying the License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3521
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3522
      You may add Your own copyright statement to Your modifications and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3523
      may provide additional or different license terms and conditions
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3524
      for use, reproduction, or distribution of Your modifications, or
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3525
      for any such Derivative Works as a whole, provided Your use,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3526
      reproduction, and distribution of the Work otherwise complies with
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3527
      the conditions stated in this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3528
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3529
   5. Submission of Contributions. Unless You explicitly state otherwise,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3530
      any Contribution intentionally submitted for inclusion in the Work
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3531
      by You to the Licensor shall be under the terms and conditions of
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3532
      this License, without any additional terms or conditions.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3533
      Notwithstanding the above, nothing herein shall supersede or modify
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3534
      the terms of any separate license agreement you may have executed
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3535
      with Licensor regarding such Contributions.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3536
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3537
   6. Trademarks. This License does not grant permission to use the trade
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3538
      names, trademarks, service marks, or product names of the Licensor,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3539
      except as required for reasonable and customary use in describing the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3540
      origin of the Work and reproducing the content of the NOTICE file.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3541
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3542
   7. Disclaimer of Warranty. Unless required by applicable law or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3543
      agreed to in writing, Licensor provides the Work (and each
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3544
      Contributor provides its Contributions) on an "AS IS" BASIS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3545
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3546
      implied, including, without limitation, any warranties or conditions
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3547
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3548
      PARTICULAR PURPOSE. You are solely responsible for determining the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3549
      appropriateness of using or redistributing the Work and assume any
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3550
      risks associated with Your exercise of permissions under this License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3551
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3552
   8. Limitation of Liability. In no event and under no legal theory,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3553
      whether in tort (including negligence), contract, or otherwise,
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3554
      unless required by applicable law (such as deliberate and grossly
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3555
      negligent acts) or agreed to in writing, shall any Contributor be
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3556
      liable to You for damages, including any direct, indirect, special,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3557
      incidental, or consequential damages of any character arising as a
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3558
      result of this License or out of the use or inability to use the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3559
      Work (including but not limited to damages for loss of goodwill,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3560
      work stoppage, computer failure or malfunction, or any and all
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3561
      other commercial damages or losses), even if such Contributor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3562
      has been advised of the possibility of such damages.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3563
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3564
   9. Accepting Warranty or Additional Liability. While redistributing
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3565
      the Work or Derivative Works thereof, You may choose to offer,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3566
      and charge a fee for, acceptance of support, warranty, indemnity,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3567
      or other liability obligations and/or rights consistent with this
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3568
      License. However, in accepting such obligations, You may act only
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3569
      on Your own behalf and on Your sole responsibility, not on behalf
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3570
      of any other Contributor, and only if You agree to indemnify,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3571
      defend, and hold each Contributor harmless for any liability
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3572
      incurred by, or claims asserted against, such Contributor by reason
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3573
      of your accepting any such warranty or additional liability.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3574
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3575
   END OF TERMS AND CONDITIONS
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3576
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3577
   APPENDIX: How to apply the Apache License to your work.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3578
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3579
      To apply the Apache License to your work, attach the following
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3580
      boilerplate notice, with the fields enclosed by brackets "[]"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3581
      replaced with your own identifying information. (Don't include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3582
      the brackets!)  The text should be enclosed in the appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3583
      comment syntax for the file format. We also recommend that a
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3584
      file or class name and description of purpose be included on the
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3585
      same "printed page" as the copyright notice for easier
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3586
      identification within third-party archives.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3587
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3588
   Copyright [yyyy] [name of copyright owner]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3589
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3590
   Licensed under the Apache License, Version 2.0 (the "License");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3591
   you may not use this file except in compliance with the License.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3592
   You may obtain a copy of the License at
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3593
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3594
       http://www.apache.org/licenses/LICENSE-2.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3595
9773
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3596
   Unless required by applicable law or agreed to in writing, software
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3597
   distributed under the License is distributed on an "AS IS" BASIS,
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3598
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3599
   See the License for the specific language governing permissions and
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3600
   limitations under the License.
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3601
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3602
--- end of LICENSE ---
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3603
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3604
-------------------------------------------------------------------------------
9ecab72d3b70 7045697: JDK7 THIRD PARTY README update
jeff
parents: 3489
diff changeset
  3605