blob: 6600a659074f5f71c6dc4e71099961d2bfc5ab5b [file] [log] [blame]
Janis Danisevskis53e448c2016-03-31 13:35:25 +01001PCRE2 LICENCE
2-------------
Nick Kralevichf73ff172014-09-27 12:41:49 -07003
Janis Danisevskis53e448c2016-03-31 13:35:25 +01004PCRE2 is a library of functions to support regular expressions whose syntax
Nick Kralevichf73ff172014-09-27 12:41:49 -07005and semantics are as close as possible to those of the Perl 5 language.
6
Janis Danisevskis53e448c2016-03-31 13:35:25 +01007Release 10 of PCRE2 is distributed under the terms of the "BSD" licence, as
8specified below. The documentation for PCRE2, supplied in the "doc"
Elliott Hughes8366e8b2015-08-14 20:48:15 -07009directory, is distributed under the same terms as the software itself. The data
10in the testdata directory is not copyrighted and is in the public domain.
Nick Kralevichf73ff172014-09-27 12:41:49 -070011
12The basic library functions are written in C and are freestanding. Also
Janis Danisevskis53e448c2016-03-31 13:35:25 +010013included in the distribution is a just-in-time compiler that can be used to
14optimize pattern matching. This is an optional feature that can be omitted when
15the library is built.
Nick Kralevichf73ff172014-09-27 12:41:49 -070016
17
18THE BASIC LIBRARY FUNCTIONS
19---------------------------
20
21Written by: Philip Hazel
22Email local part: ph10
23Email domain: cam.ac.uk
24
25University of Cambridge Computing Service,
26Cambridge, England.
27
Janis Danisevskis53e448c2016-03-31 13:35:25 +010028Copyright (c) 1997-2016 University of Cambridge
Nick Kralevichf73ff172014-09-27 12:41:49 -070029All rights reserved.
30
31
Janis Danisevskis53e448c2016-03-31 13:35:25 +010032PCRE2 JUST-IN-TIME COMPILATION SUPPORT
33--------------------------------------
Nick Kralevichf73ff172014-09-27 12:41:49 -070034
35Written by: Zoltan Herczeg
36Email local part: hzmester
37Emain domain: freemail.hu
38
Janis Danisevskis53e448c2016-03-31 13:35:25 +010039Copyright(c) 2010-2016 Zoltan Herczeg
Nick Kralevichf73ff172014-09-27 12:41:49 -070040All rights reserved.
41
42
43STACK-LESS JUST-IN-TIME COMPILER
44--------------------------------
45
46Written by: Zoltan Herczeg
47Email local part: hzmester
48Emain domain: freemail.hu
49
Janis Danisevskis53e448c2016-03-31 13:35:25 +010050Copyright(c) 2009-2016 Zoltan Herczeg
Nick Kralevichf73ff172014-09-27 12:41:49 -070051All rights reserved.
52
53
54THE "BSD" LICENCE
55-----------------
56
57Redistribution and use in source and binary forms, with or without
58modification, are permitted provided that the following conditions are met:
59
60 * Redistributions of source code must retain the above copyright notice,
61 this list of conditions and the following disclaimer.
62
63 * Redistributions in binary form must reproduce the above copyright
64 notice, this list of conditions and the following disclaimer in the
65 documentation and/or other materials provided with the distribution.
66
Janis Danisevskis53e448c2016-03-31 13:35:25 +010067 * Neither the name of the University of Cambridge nor the names of any
68 contributors may be used to endorse or promote products derived from this
69 software without specific prior written permission.
Nick Kralevichf73ff172014-09-27 12:41:49 -070070
71THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
72AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
73IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
74ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
75LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
76CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
77SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
78INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
79CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
80ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
81POSSIBILITY OF SUCH DAMAGE.
82
83End