LICENCE 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. The data
  8. in the testdata directory is not copyrighted and is in the public domain.
  9. The basic library functions are written in C and are freestanding. Also
  10. included in the distribution is a set of C++ wrapper functions, and a
  11. just-in-time compiler that can be used to optimize pattern matching. These
  12. are both optional features that can be omitted when the library is built.
  13. THE BASIC LIBRARY FUNCTIONS
  14. ---------------------------
  15. Written by: Philip Hazel
  16. Email local part: Philip.Hazel
  17. Email domain: gmail.com
  18. University of Cambridge Computing Service,
  19. Cambridge, England.
  20. Copyright (c) 1997-2021 University of Cambridge
  21. All rights reserved.
  22. PCRE JUST-IN-TIME COMPILATION SUPPORT
  23. -------------------------------------
  24. Written by: Zoltan Herczeg
  25. Email local part: hzmester
  26. Email domain: freemail.hu
  27. Copyright(c) 2010-2021 Zoltan Herczeg
  28. All rights reserved.
  29. STACK-LESS JUST-IN-TIME COMPILER
  30. --------------------------------
  31. Written by: Zoltan Herczeg
  32. Email local part: hzmester
  33. Email domain: freemail.hu
  34. Copyright(c) 2009-2021 Zoltan Herczeg
  35. All rights reserved.
  36. THE C++ WRAPPER FUNCTIONS
  37. -------------------------
  38. Contributed by: Google Inc.
  39. Copyright (c) 2007-2012, Google Inc.
  40. All rights reserved.
  41. THE "BSD" LICENCE
  42. -----------------
  43. Redistribution and use in source and binary forms, with or without
  44. modification, are permitted provided that the following conditions are met:
  45. * Redistributions of source code must retain the above copyright notice,
  46. this list of conditions and the following disclaimer.
  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. * Neither the name of the University of Cambridge nor the name of Google
  51. Inc. nor the names of their contributors may be used to endorse or
  52. promote products derived from this software without specific prior
  53. written permission.
  54. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  55. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  56. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  57. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  58. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  59. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  60. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  61. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  62. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  63. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  64. POSSIBILITY OF SUCH DAMAGE.
  65. End