Install PCRE 6.7 in in place of 6.2.
[exim.git] / src / src / pcre / LICENCE
CommitLineData
c86f6258
PH
1PCRE LICENCE
2------------
3
4PCRE is a library of functions to support regular expressions whose syntax
5and semantics are as close as possible to those of the Perl 5 language.
6
8ac170f3 7Release 6 of PCRE is distributed under the terms of the "BSD" licence, as
c86f6258
PH
8specified below. The documentation for PCRE, supplied in the "doc"
9directory, is distributed under the same terms as the software itself.
10
8ac170f3
PH
11The basic library functions are written in C and are freestanding. Also
12included in the distribution is a set of C++ wrapper functions.
13
14
15THE BASIC LIBRARY FUNCTIONS
16---------------------------
17
18Written by: Philip Hazel
19Email local part: ph10
20Email domain: cam.ac.uk
c86f6258
PH
21
22University of Cambridge Computing Service,
23Cambridge, England. Phone: +44 1223 334714.
24
aa41d2de 25Copyright (c) 1997-2006 University of Cambridge
8ac170f3
PH
26All rights reserved.
27
28
29THE C++ WRAPPER FUNCTIONS
30-------------------------
31
32Contributed by: Google Inc.
33
aa41d2de 34Copyright (c) 2006, Google Inc.
c86f6258
PH
35All rights reserved.
36
8ac170f3
PH
37
38THE "BSD" LICENCE
39-----------------
40
c86f6258
PH
41Redistribution and use in source and binary forms, with or without
42modification, are permitted provided that the following conditions are met:
43
44 * Redistributions of source code must retain the above copyright notice,
45 this list of conditions and the following disclaimer.
46
47 * Redistributions in binary form must reproduce the above copyright
48 notice, this list of conditions and the following disclaimer in the
49 documentation and/or other materials provided with the distribution.
50
8ac170f3
PH
51 * Neither the name of the University of Cambridge nor the name of Google
52 Inc. nor the names of their contributors may be used to endorse or
53 promote products derived from this software without specific prior
54 written permission.
c86f6258
PH
55
56THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
57AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
58IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
59ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
60LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
61CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
62SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
63INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
64CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
65ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
66POSSIBILITY OF SUCH DAMAGE.
67
68End