LICENCE 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. PCRE2 LICENCE
  2. -------------
  3. PCRE2 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 10 of PCRE2 is distributed under the terms of the "BSD" licence, as
  6. specified below. The documentation for PCRE2, 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 just-in-time compiler that can be used to
  11. optimize pattern matching. This is an optional feature that can be omitted when
  12. the library is built.
  13. THE BASIC LIBRARY FUNCTIONS
  14. ---------------------------
  15. Written by: Philip Hazel
  16. Email local part: ph10
  17. Email domain: cam.ac.uk
  18. University of Cambridge Computing Service,
  19. Cambridge, England.
  20. Copyright (c) 1997-2017 University of Cambridge
  21. All rights reserved.
  22. PCRE2 JUST-IN-TIME COMPILATION SUPPORT
  23. --------------------------------------
  24. Written by: Zoltan Herczeg
  25. Email local part: hzmester
  26. Emain domain: freemail.hu
  27. Copyright(c) 2010-2017 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. Emain domain: freemail.hu
  34. Copyright(c) 2009-2017 Zoltan Herczeg
  35. All rights reserved.
  36. THE "BSD" LICENCE
  37. -----------------
  38. Redistribution and use in source and binary forms, with or without
  39. modification, are permitted provided that the following conditions are met:
  40. * Redistributions of source code must retain the above copyright notice,
  41. this list of conditions and the following disclaimer.
  42. * Redistributions in binary form must reproduce the above copyright
  43. notice, this list of conditions and the following disclaimer in the
  44. documentation and/or other materials provided with the distribution.
  45. * Neither the name of the University of Cambridge nor the names of any
  46. contributors may be used to endorse or promote products derived from this
  47. software without specific prior written permission.
  48. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  49. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  50. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  51. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  52. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  53. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  54. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  55. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  56. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  57. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  58. POSSIBILITY OF SUCH DAMAGE.
  59. End