components/pcre/pcre.license
author April Chin <april.chin@oracle.com>
Thu, 25 Jun 2015 13:02:22 -0700
changeset 4549 cef88d7826a6
parent 1205 6c6c27bcf9ac
child 5186 bd6b397dfc9b
permissions -rw-r--r--
21290075 update pcre to version 8.37 20069753 problem in LIBRARY/PCRE 21093256 problem in LIBRARY/PCRE 21179786 problem in LIBRARY/PCRE 21195811 problem in LIBRARY/PCRE 20460964 PCRE should have some master test results to compare against 15417417 SUNBT6594265 man page for pcregrep is missing "Last change:" date
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
     1
PCRE LICENCE
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
     2
------------
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
     3
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
     4
PCRE is a library of functions to support regular expressions whose syntax
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
     5
and semantics are as close as possible to those of the Perl 5 language.
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
     6
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
     7
Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
     8
specified below. The documentation for PCRE, supplied in the "doc"
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
     9
directory, is distributed under the same terms as the software itself.
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
    10
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    11
The basic library functions are written in C and are freestanding. Also
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    12
included in the distribution is a set of C++ wrapper functions, and a
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    13
just-in-time compiler that can be used to optimize pattern matching. These
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    14
are both optional features that can be omitted when the library is built.
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
    15
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
    16
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    17
THE BASIC LIBRARY FUNCTIONS
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    18
---------------------------
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    19
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    20
Written by:       Philip Hazel
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    21
Email local part: ph10
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    22
Email domain:     cam.ac.uk
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    23
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    24
University of Cambridge Computing Service,
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    25
Cambridge, England.
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    26
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    27
Copyright (c) 1997-2015 University of Cambridge
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    28
All rights reserved.
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    29
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    30
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    31
PCRE JUST-IN-TIME COMPILATION SUPPORT
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    32
-------------------------------------
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
    33
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    34
Written by:       Zoltan Herczeg
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    35
Email local part: hzmester
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    36
Emain domain:     freemail.hu
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    37
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    38
Copyright(c) 2010-2015 Zoltan Herczeg
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    39
All rights reserved.
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    40
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
    41
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    42
STACK-LESS JUST-IN-TIME COMPILER
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    43
--------------------------------
730
38f3620b2700 6960343 Upgrade PCRE to 8.10 or higher
April Chin <april.chin@oracle.com>
parents: 230
diff changeset
    44
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    45
Written by:       Zoltan Herczeg
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    46
Email local part: hzmester
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    47
Emain domain:     freemail.hu
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    48
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    49
Copyright(c) 2009-2015 Zoltan Herczeg
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    50
All rights reserved.
730
38f3620b2700 6960343 Upgrade PCRE to 8.10 or higher
April Chin <april.chin@oracle.com>
parents: 230
diff changeset
    51
38f3620b2700 6960343 Upgrade PCRE to 8.10 or higher
April Chin <april.chin@oracle.com>
parents: 230
diff changeset
    52
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    53
THE C++ WRAPPER FUNCTIONS
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    54
-------------------------
730
38f3620b2700 6960343 Upgrade PCRE to 8.10 or higher
April Chin <april.chin@oracle.com>
parents: 230
diff changeset
    55
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    56
Contributed by:   Google Inc.
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
    57
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    58
Copyright (c) 2007-2012, Google Inc.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    59
All rights reserved.
730
38f3620b2700 6960343 Upgrade PCRE to 8.10 or higher
April Chin <april.chin@oracle.com>
parents: 230
diff changeset
    60
38f3620b2700 6960343 Upgrade PCRE to 8.10 or higher
April Chin <april.chin@oracle.com>
parents: 230
diff changeset
    61
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    62
THE "BSD" LICENCE
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    63
-----------------
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    64
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    65
Redistribution and use in source and binary forms, with or without
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    66
modification, are permitted provided that the following conditions are met:
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    67
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    68
    * Redistributions of source code must retain the above copyright notice,
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    69
      this list of conditions and the following disclaimer.
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    70
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    71
    * Redistributions in binary form must reproduce the above copyright
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    72
      notice, this list of conditions and the following disclaimer in the
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    73
      documentation and/or other materials provided with the distribution.
730
38f3620b2700 6960343 Upgrade PCRE to 8.10 or higher
April Chin <april.chin@oracle.com>
parents: 230
diff changeset
    74
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    75
    * Neither the name of the University of Cambridge nor the name of Google
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    76
      Inc. nor the names of their contributors may be used to endorse or
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    77
      promote products derived from this software without specific prior
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    78
      written permission.
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
    79
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    80
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    81
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    82
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    83
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    84
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    85
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    86
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    87
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    88
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    89
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    90
POSSIBILITY OF SUCH DAMAGE.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    91
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
    92
End
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
    93
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    94
ADDITIONAL COPYRIGHT NOTICES PRESENT IN SOURCE CODE FILES:
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    95
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    96
1. Cambridge University/Philip Hazel Copyright Header:
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
    97
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    98
/*************************************************
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
    99
*      Perl-Compatible Regular Expressions       *
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   100
*************************************************/
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   101
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   102
/* PCRE is a library of functions to support regular expressions whose syntax
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   103
and semantics are as close as possible to those of the Perl 5 language.
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   104
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   105
                       Written by Philip Hazel
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   106
           Copyright (c) 1997-2014 University of Cambridge
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   107
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   108
Copyright (c) 2005, Google Inc.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   109
All rights reserved.
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   110
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   111
-----------------------------------------------------------------------------
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   112
Redistribution and use in source and binary forms, with or without
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   113
modification, are permitted provided that the following conditions are met:
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   114
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   115
    * Redistributions of source code must retain the above copyright notice,
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   116
      this list of conditions and the following disclaimer.
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   117
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   118
    * Redistributions in binary form must reproduce the above copyright
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   119
      notice, this list of conditions and the following disclaimer in the
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   120
      documentation and/or other materials provided with the distribution.
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   121
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   122
    * Neither the name of the University of Cambridge nor the names of its
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   123
      contributors may be used to endorse or promote products derived from
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   124
      this software without specific prior written permission.
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   125
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   126
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   127
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   128
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   129
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   130
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   131
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   132
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   133
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   134
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   135
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   136
POSSIBILITY OF SUCH DAMAGE.
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   137
-----------------------------------------------------------------------------
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   138
*/
230
d6efadb643f7 7042700 move pcre from SFW to userland
April Chin <april.chin@oracle.com>
parents:
diff changeset
   139
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   140
2. GOOGLE Copyright Header:
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   141
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   142
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   143
// Copyright (c) 2005 - 2010, Google Inc.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   144
// All rights reserved.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   145
//
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   146
// Redistribution and use in source and binary forms, with or without
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   147
// modification, are permitted provided that the following conditions are
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   148
// met:
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   149
//
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   150
//     * Redistributions of source code must retain the above copyright
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   151
// notice, this list of conditions and the following disclaimer.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   152
//     * Redistributions in binary form must reproduce the above
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   153
// copyright notice, this list of conditions and the following disclaimer
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   154
// in the documentation and/or other materials provided with the
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   155
// distribution.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   156
//     * Neither the name of Google Inc. nor the names of its
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   157
// contributors may be used to endorse or promote products derived from
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   158
// this software without specific prior written permission.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   159
//
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   160
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   161
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   162
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   163
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   164
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   165
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   166
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   167
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   168
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   169
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   170
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   171
//
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   172
// Author: Sanjay Ghemawat
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   173
// Author: Greg J. Badros
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   174
// Author: [email protected] (Wilson Hsieh)
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   175
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   176
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   177
3. Stack-less Just-In-Time Compiler Copyright Header:
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   178
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   179
4549
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   180
 *    Stack-less Just-In-Time compiler
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   181
 *
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   182
 *    Copyright 2013-2013 Tilera Corporation([email protected]). All rights reserved.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   183
 *    Copyright 2009-2012 Zoltan Herczeg ([email protected]). All rights reserved.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   184
 *
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   185
 * Redistribution and use in source and binary forms, with or without modification, are
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   186
 * permitted provided that the following conditions are met:
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   187
 *
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   188
 *   1. Redistributions of source code must retain the above copyright notice, this list of
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   189
 *      conditions and the following disclaimer.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   190
 *
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   191
 *   2. Redistributions in binary form must reproduce the above copyright notice, this list
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   192
 *      of conditions and the following disclaimer in the documentation and/or other materials
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   193
 *      provided with the distribution.
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   194
 *
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   195
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND CONTRIBUTORS ``AS IS'' AND ANY
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   196
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   197
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   198
 * SHALL THE COPYRIGHT HOLDER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   199
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   200
 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   201
 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   202
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
cef88d7826a6 21290075 update pcre to version 8.37
April Chin <april.chin@oracle.com>
parents: 1205
diff changeset
   203
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1029
6fa22a458187 7204519 let's add more TPNO's
Stefan Teleman <stefan.teleman@oracle.com>
parents: 1004
diff changeset
   204