summaryrefslogtreecommitdiff
path: root/docs/manual/new_features_2_2.xml
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2005-09-22 11:27:25 +0000
committerJoe Orton <jorton@apache.org>2005-09-22 11:27:25 +0000
commitb634ff9de81ecc29d289d4ef6f0e2cc694a6b590 (patch)
tree6205edf9b8548f15e02b755c13704861e328e21c /docs/manual/new_features_2_2.xml
parent9971cfc0a5eff648cd6a903c825ce059c2f76a30 (diff)
downloadhttpd-b634ff9de81ecc29d289d4ef6f0e2cc694a6b590.tar.gz
Cover regex API changes for module developers, and mention support
for external PCRE. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@290931 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/new_features_2_2.xml')
-rw-r--r--docs/manual/new_features_2_2.xml15
1 files changed, 14 insertions, 1 deletions
diff --git a/docs/manual/new_features_2_2.xml b/docs/manual/new_features_2_2.xml
index 9e15165956..f433c9cbc2 100644
--- a/docs/manual/new_features_2_2.xml
+++ b/docs/manual/new_features_2_2.xml
@@ -69,7 +69,9 @@
<dt>Regular Expression Library Updated</dt>
<dd>Version 5.0 of the
<a href="http://www.pcre.org/">Perl Compatible Regular Expression
- Library</a> (PCRE) is now included.</dd>
+ Library</a> (PCRE) is now included. <program>httpd</program> can be
+ configured to use a system installation of PCRE by passing the
+ <code>--with-pcre</code> flag to configure.</dd>
<dt>Smart Filtering</dt>
<dd><module>mod_filter</module> introduces dynamic configuration
@@ -176,6 +178,17 @@
<dt>Monitor hook added</dt>
<dd>Monitor hook enables modules to run regular/scheduled jobs
in the parent (root) process.</dd>
+
+ <dt>Regular expression API changes</dt>
+
+ <dd>The <code>pcreposix.h</code> header is no longer available;
+ it is replaced by the new <code>ap_regex.h</code> header. The
+ POSIX.2 <code>regex.h</code> implementation exposed by the old
+ header is now available under the <code>ap_</code> namespace
+ from <code>ap_regex.h</code>. Calls to <code>regcomp</code>,
+ <code>regexec</code> and so on can be replaced by calls to
+ <code>ap_regcomp</code>, <code>ap_regcomp</code>.</dd>
+
</dl>
</section>
</manualpage>