From: Joe Orton Date: Thu, 22 Sep 2005 11:27:25 +0000 (+0000) Subject: Cover regex API changes for module developers, and mention support X-Git-Tag: 2.3.0~2952 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b634ff9de81ecc29d289d4ef6f0e2cc694a6b590;p=apache 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 --- 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 @@
Regular Expression Library Updated
Version 5.0 of the Perl Compatible Regular Expression - Library (PCRE) is now included.
+ Library (PCRE) is now included. httpd can be + configured to use a system installation of PCRE by passing the + --with-pcre flag to configure.
Smart Filtering
mod_filter introduces dynamic configuration @@ -176,6 +178,17 @@
Monitor hook added
Monitor hook enables modules to run regular/scheduled jobs in the parent (root) process.
+ +
Regular expression API changes
+ +
The pcreposix.h header is no longer available; + it is replaced by the new ap_regex.h header. The + POSIX.2 regex.h implementation exposed by the old + header is now available under the ap_ namespace + from ap_regex.h. Calls to regcomp, + regexec and so on can be replaced by calls to + ap_regcomp, ap_regcomp.
+