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