pcre-license.txt 3.0 KB

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