summaryrefslogtreecommitdiff
path: root/maint
diff options
context:
space:
mode:
authorchpe <chpe@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-16 15:53:30 +0000
committerchpe <chpe@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-16 15:53:30 +0000
commit62c2f93fe63ee94ff2692091a42a7d594f5d4fe3 (patch)
tree3d1739b24c57943c20fa880eed55ab341db96a81 /maint
parent3f6d05379ea067a3b4f4a61e4be268ee8c37e7a6 (diff)
downloadpcre-62c2f93fe63ee94ff2692091a42a7d594f5d4fe3.tar.gz
pcre32: Add 32-bit library
Create libpcre32 that operates on 32-bit characters (UTF-32). This turned out to be surprisingly simple after the UTF-16 support was introduced; mostly just extra ifdefs and adjusting and adding some tests. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1055 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'maint')
-rwxr-xr-xmaint/ManyConfigTests11
-rw-r--r--maint/README3
2 files changed, 12 insertions, 2 deletions
diff --git a/maint/ManyConfigTests b/maint/ManyConfigTests
index 0497ff3..7eed2a2 100755
--- a/maint/ManyConfigTests
+++ b/maint/ManyConfigTests
@@ -169,6 +169,14 @@ for opts in \
"--enable-pcre16 --enable-unicode-properties --disable-stack-for-recursion --disable-shared" \
"--enable-pcre16 --enable-jit --enable-unicode-properties --with-link-size=3 --disable-shared" \
"--enable-pcre16 --enable-jit --enable-unicode-properties --with-link-size=4 --disable-shared"
+ "--enable-pcre32" \
+ "--enable-pcre32 --enable-jit --enable-utf --disable-shared" \
+ "--enable-pcre32 --enable-jit --enable-unicode-properties --disable-shared" \
+ "--enable-pcre32 --enable-jit --disable-pcre8 --disable-shared" \
+ "--enable-pcre32 --enable-jit --disable-pcre8 --enable-utf --disable-shared" \
+ "--enable-pcre32 --disable-stack-for-recursion --disable-shared" \
+ "--enable-pcre32 --enable-unicode-properties --disable-stack-for-recursion --disable-shared" \
+ "--enable-pcre32 --enable-jit --enable-unicode-properties --with-link-size=4 --disable-shared"
do
runtest
done
@@ -184,7 +192,8 @@ for opts in \
"--enable-unicode-properties --disable-stack-for-recursion --disable-shared" \
"--enable-unicode-properties --with-link-size=3 --disable-shared" \
"--enable-jit --enable-unicode-properties --disable-shared" \
- "--enable-pcre16 --enable-jit --enable-unicode-properties --disable-shared"
+ "--enable-pcre16 --enable-pcre32 --enable-jit --enable-unicode-properties " \
+ "--disable-shared"
do
runtest
done
diff --git a/maint/README b/maint/README
index edf29cd..45050f7 100644
--- a/maint/README
+++ b/maint/README
@@ -279,7 +279,8 @@ others are relatively new.
support --outputfile=name.
. Consider making UTF-8 and UCP the default for PCRE n.0 for some n > 8.
- (And now presumably UTF-16 and UCP for the 16-bit library.)
+ (And now presumably UTF-16 and UCP for the 16-bit library, and UTF-32 and UCP
+ for the 32-bit library.)
. Add a user pointer to pcre_malloc/free functions -- some option would be
needed to retain backward compatibility.