Blame LICENCE

Packit 78a954
PCRE LICENCE
Packit 78a954
------------
Packit 78a954
Packit 78a954
PCRE is a library of functions to support regular expressions whose syntax
Packit 78a954
and semantics are as close as possible to those of the Perl 5 language.
Packit 78a954
Packit 78a954
Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
Packit 78a954
specified below. The documentation for PCRE, supplied in the "doc"
Packit 78a954
directory, is distributed under the same terms as the software itself. The data
Packit 78a954
in the testdata directory is not copyrighted and is in the public domain.
Packit 78a954
Packit 78a954
The basic library functions are written in C and are freestanding. Also
Packit 78a954
included in the distribution is a set of C++ wrapper functions, and a
Packit 78a954
just-in-time compiler that can be used to optimize pattern matching. These
Packit 78a954
are both optional features that can be omitted when the library is built.
Packit 78a954
Packit 78a954
Packit 78a954
THE BASIC LIBRARY FUNCTIONS
Packit 78a954
---------------------------
Packit 78a954
Packit 78a954
Written by:       Philip Hazel
Packit 78a954
Email local part: ph10
Packit 78a954
Email domain:     cam.ac.uk
Packit 78a954
Packit 78a954
University of Cambridge Computing Service,
Packit 78a954
Cambridge, England.
Packit 78a954
Packit 78a954
Copyright (c) 1997-2015 University of Cambridge
Packit 78a954
All rights reserved.
Packit 78a954
Packit 78a954
Packit 78a954
PCRE JUST-IN-TIME COMPILATION SUPPORT
Packit 78a954
-------------------------------------
Packit 78a954
Packit 78a954
Written by:       Zoltan Herczeg
Packit 78a954
Email local part: hzmester
Packit 78a954
Emain domain:     freemail.hu
Packit 78a954
Packit 78a954
Copyright(c) 2010-2015 Zoltan Herczeg
Packit 78a954
All rights reserved.
Packit 78a954
Packit 78a954
Packit 78a954
STACK-LESS JUST-IN-TIME COMPILER
Packit 78a954
--------------------------------
Packit 78a954
Packit 78a954
Written by:       Zoltan Herczeg
Packit 78a954
Email local part: hzmester
Packit 78a954
Emain domain:     freemail.hu
Packit 78a954
Packit 78a954
Copyright(c) 2009-2015 Zoltan Herczeg
Packit 78a954
All rights reserved.
Packit 78a954
Packit 78a954
Packit 78a954
THE C++ WRAPPER FUNCTIONS
Packit 78a954
-------------------------
Packit 78a954
Packit 78a954
Contributed by:   Google Inc.
Packit 78a954
Packit 78a954
Copyright (c) 2007-2012, Google Inc.
Packit 78a954
All rights reserved.
Packit 78a954
Packit 78a954
Packit 78a954
THE "BSD" LICENCE
Packit 78a954
-----------------
Packit 78a954
Packit 78a954
Redistribution and use in source and binary forms, with or without
Packit 78a954
modification, are permitted provided that the following conditions are met:
Packit 78a954
Packit 78a954
    * Redistributions of source code must retain the above copyright notice,
Packit 78a954
      this list of conditions and the following disclaimer.
Packit 78a954
Packit 78a954
    * Redistributions in binary form must reproduce the above copyright
Packit 78a954
      notice, this list of conditions and the following disclaimer in the
Packit 78a954
      documentation and/or other materials provided with the distribution.
Packit 78a954
Packit 78a954
    * Neither the name of the University of Cambridge nor the name of Google
Packit 78a954
      Inc. nor the names of their contributors may be used to endorse or
Packit 78a954
      promote products derived from this software without specific prior
Packit 78a954
      written permission.
Packit 78a954
Packit 78a954
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 78a954
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 78a954
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit 78a954
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
Packit 78a954
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Packit 78a954
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Packit 78a954
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Packit 78a954
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Packit 78a954
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Packit 78a954
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Packit 78a954
POSSIBILITY OF SUCH DAMAGE.
Packit 78a954
Packit 78a954
End