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