Bill Yi | e0a0937 | 2015-05-22 11:55:15 -0700 | [diff] [blame] | 1 | PCRE LICENCE |
| 2 | ------------ |
| 3 | |
| 4 | PCRE is a library of functions to support regular expressions whose syntax |
| 5 | and semantics are as close as possible to those of the Perl 5 language. |
| 6 | |
| 7 | Release 8 of PCRE is distributed under the terms of the "BSD" licence, as |
| 8 | specified below. The documentation for PCRE, supplied in the "doc" |
| 9 | directory, is distributed under the same terms as the software itself. |
| 10 | |
| 11 | The basic library functions are written in C and are freestanding. Also |
| 12 | included in the distribution is a set of C++ wrapper functions, and a |
| 13 | just-in-time compiler that can be used to optimize pattern matching. These |
| 14 | are both optional features that can be omitted when the library is built. |
| 15 | |
| 16 | |
| 17 | THE BASIC LIBRARY FUNCTIONS |
| 18 | --------------------------- |
| 19 | |
| 20 | Written by: Philip Hazel |
| 21 | Email local part: ph10 |
| 22 | Email domain: cam.ac.uk |
| 23 | |
| 24 | University of Cambridge Computing Service, |
| 25 | Cambridge, England. |
| 26 | |
| 27 | Copyright (c) 1997-2014 University of Cambridge |
| 28 | All rights reserved. |
| 29 | |
| 30 | |
| 31 | PCRE JUST-IN-TIME COMPILATION SUPPORT |
| 32 | ------------------------------------- |
| 33 | |
| 34 | Written by: Zoltan Herczeg |
| 35 | Email local part: hzmester |
| 36 | Emain domain: freemail.hu |
| 37 | |
| 38 | Copyright(c) 2010-2014 Zoltan Herczeg |
| 39 | All rights reserved. |
| 40 | |
| 41 | |
| 42 | STACK-LESS JUST-IN-TIME COMPILER |
| 43 | -------------------------------- |
| 44 | |
| 45 | Written by: Zoltan Herczeg |
| 46 | Email local part: hzmester |
| 47 | Emain domain: freemail.hu |
| 48 | |
| 49 | Copyright(c) 2009-2014 Zoltan Herczeg |
| 50 | All rights reserved. |
| 51 | |
| 52 | |
| 53 | THE C++ WRAPPER FUNCTIONS |
| 54 | ------------------------- |
| 55 | |
| 56 | Contributed by: Google Inc. |
| 57 | |
| 58 | Copyright (c) 2007-2012, Google Inc. |
| 59 | All rights reserved. |
| 60 | |
| 61 | |
| 62 | THE "BSD" LICENCE |
| 63 | ----------------- |
| 64 | |
| 65 | Redistribution and use in source and binary forms, with or without |
| 66 | modification, are permitted provided that the following conditions are met: |
| 67 | |
| 68 | * Redistributions of source code must retain the above copyright notice, |
| 69 | this list of conditions and the following disclaimer. |
| 70 | |
| 71 | * Redistributions in binary form must reproduce the above copyright |
| 72 | notice, this list of conditions and the following disclaimer in the |
| 73 | documentation and/or other materials provided with the distribution. |
| 74 | |
| 75 | * Neither the name of the University of Cambridge nor the name of Google |
| 76 | Inc. nor the names of their contributors may be used to endorse or |
| 77 | promote products derived from this software without specific prior |
| 78 | written permission. |
| 79 | |
| 80 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 81 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 82 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 83 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
| 84 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 85 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 86 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 87 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 88 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 89 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 90 | POSSIBILITY OF SUCH DAMAGE. |
| 91 | |
| 92 | End |