summaryrefslogtreecommitdiff
path: root/pcre-config.in
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 /pcre-config.in
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 'pcre-config.in')
-rw-r--r--pcre-config.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/pcre-config.in b/pcre-config.in
index 595e5d1..ac06a33 100644
--- a/pcre-config.in
+++ b/pcre-config.in
@@ -16,6 +16,10 @@ if test @enable_pcre16@ = yes ; then
libs="[--libs16] $libs"
fi
+if test @enable_pcre32@ = yes ; then
+ libs="[--libs32] $libs"
+fi
+
if test @enable_pcre8@ = yes ; then
libs="[--libs] [--libs-posix] $libs"
cflags="$cflags [--cflags-posix]"
@@ -106,6 +110,13 @@ while test $# -gt 0; do
echo "${usage}" 1>&2
fi
;;
+ --libs32)
+ if test @enable_pcre32@ = yes ; then
+ echo $libS$libR -lpcre32
+ else
+ echo "${usage}" 1>&2
+ fi
+ ;;
--libs-cpp)
if test @enable_cpp@ = yes ; then
echo $libS$libR -lpcrecpp -lpcre