More documentation.
This commit is contained in:
parent
caef487b9f
commit
e7627347f4
83
LICENCE
Normal file
83
LICENCE
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
PCRE2 LICENCE
|
||||||
|
-------------
|
||||||
|
|
||||||
|
PCRE2 is a library of functions to support regular expressions whose syntax
|
||||||
|
and semantics are as close as possible to those of the Perl 5 language.
|
||||||
|
|
||||||
|
Release 10 of PCRE2 is distributed under the terms of the "BSD" licence, as
|
||||||
|
specified below. The documentation for PCRE2, supplied in the "doc"
|
||||||
|
directory, is distributed under the same terms as the software itself.
|
||||||
|
|
||||||
|
The basic library functions are written in C and are freestanding. Also
|
||||||
|
included in the distribution is a just-in-time compiler that can be used to
|
||||||
|
optimize pattern matching. This is an optional feature that can be omitted when
|
||||||
|
the library is built.
|
||||||
|
|
||||||
|
|
||||||
|
THE BASIC LIBRARY FUNCTIONS
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
Written by: Philip Hazel
|
||||||
|
Email local part: ph10
|
||||||
|
Email domain: cam.ac.uk
|
||||||
|
|
||||||
|
University of Cambridge Computing Service,
|
||||||
|
Cambridge, England.
|
||||||
|
|
||||||
|
Copyright (c) 1997-2014 University of Cambridge
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
|
||||||
|
PCRE JUST-IN-TIME COMPILATION SUPPORT
|
||||||
|
-------------------------------------
|
||||||
|
|
||||||
|
Written by: Zoltan Herczeg
|
||||||
|
Email local part: hzmester
|
||||||
|
Emain domain: freemail.hu
|
||||||
|
|
||||||
|
Copyright(c) 2010-2014 Zoltan Herczeg
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
|
||||||
|
STACK-LESS JUST-IN-TIME COMPILER
|
||||||
|
--------------------------------
|
||||||
|
|
||||||
|
Written by: Zoltan Herczeg
|
||||||
|
Email local part: hzmester
|
||||||
|
Emain domain: freemail.hu
|
||||||
|
|
||||||
|
Copyright(c) 2009-2014 Zoltan Herczeg
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
|
||||||
|
THE "BSD" LICENCE
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
* Redistributions of source code must retain the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
* Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
* Neither the name of the University of Cambridge nor the name of Google
|
||||||
|
Inc. nor the names of their contributors may be used to endorse or
|
||||||
|
promote products derived from this software without specific prior
|
||||||
|
written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||||
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
End
|
22
Makefile.am
22
Makefile.am
@ -7,17 +7,18 @@ AM_CPPFLAGS = -I$(builddir)/src -I$(srcdir)/src
|
|||||||
## Specify the documentation files that are distributed.
|
## Specify the documentation files that are distributed.
|
||||||
|
|
||||||
# FIXME
|
# FIXME
|
||||||
#dist_doc_DATA = \
|
dist_doc_DATA = \
|
||||||
|
AUTHORS \
|
||||||
|
COPYING \
|
||||||
|
ChangeLog \
|
||||||
|
LICENCE \
|
||||||
|
README
|
||||||
|
|
||||||
# doc/pcre.txt \
|
# doc/pcre.txt \
|
||||||
# doc/pcre-config.txt \
|
# doc/pcre-config.txt \
|
||||||
# doc/pcregrep.txt \
|
# doc/pcregrep.txt \
|
||||||
# doc/pcretest.txt \
|
# doc/pcretest.txt \
|
||||||
# AUTHORS \
|
|
||||||
# COPYING \
|
|
||||||
# ChangeLog \
|
|
||||||
# LICENCE \
|
|
||||||
# NEWS \
|
# NEWS \
|
||||||
# README
|
|
||||||
|
|
||||||
# FIXME
|
# FIXME
|
||||||
#dist_html_DATA = \
|
#dist_html_DATA = \
|
||||||
@ -77,8 +78,10 @@ AM_CPPFLAGS = -I$(builddir)/src -I$(srcdir)/src
|
|||||||
|
|
||||||
# FIXME
|
# FIXME
|
||||||
dist_man_MANS = \
|
dist_man_MANS = \
|
||||||
doc/pcre2api.3
|
doc/pcre2api.3 \
|
||||||
|
doc/pcre2callout.3 \
|
||||||
|
doc/pcre2test.1 \
|
||||||
|
doc/pcre2unicode.3
|
||||||
|
|
||||||
# doc/pcre2-config.1 \
|
# doc/pcre2-config.1 \
|
||||||
# doc/pcre2.3 \
|
# doc/pcre2.3 \
|
||||||
@ -112,7 +115,6 @@ dist_man_MANS = \
|
|||||||
# doc/pcre2_utf32_to_host_byte_order.3 \
|
# doc/pcre2_utf32_to_host_byte_order.3 \
|
||||||
# doc/pcre2_version.3 \
|
# doc/pcre2_version.3 \
|
||||||
# doc/pcre2build.3 \
|
# doc/pcre2build.3 \
|
||||||
# doc/pcre2callout.3 \
|
|
||||||
# doc/pcre2compat.3 \
|
# doc/pcre2compat.3 \
|
||||||
# doc/pcre2demo.3 \
|
# doc/pcre2demo.3 \
|
||||||
# doc/pcre2grep.1 \
|
# doc/pcre2grep.1 \
|
||||||
@ -127,8 +129,6 @@ dist_man_MANS = \
|
|||||||
# doc/pcre2sample.3 \
|
# doc/pcre2sample.3 \
|
||||||
# doc/pcre2stack.3 \
|
# doc/pcre2stack.3 \
|
||||||
# doc/pcre2syntax.3 \
|
# doc/pcre2syntax.3 \
|
||||||
# doc/pcre2test.1 \
|
|
||||||
# doc/pcre2unicode.3
|
|
||||||
|
|
||||||
# The Libtool libraries to install. We'll add to this later.
|
# The Libtool libraries to install. We'll add to this later.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user