summaryrefslogtreecommitdiff
path: root/ext/pcre/pcrelib/pcre_ucd.c
diff options
context:
space:
mode:
authorScott MacVicar <scottmac@php.net>2009-11-03 12:15:03 +0000
committerScott MacVicar <scottmac@php.net>2009-11-03 12:15:03 +0000
commitf03b175f7cb5b1ffc0b4f59d83836beb3794ebfd (patch)
tree30ce6bf2f30beb84bbbc70d257a2666d032e0398 /ext/pcre/pcrelib/pcre_ucd.c
parent26e3082abca953a2add5ae02b6fd3f6f301e00ec (diff)
downloadphp-git-f03b175f7cb5b1ffc0b4f59d83836beb3794ebfd.tar.gz
Update PCRE to 8.00
Diffstat (limited to 'ext/pcre/pcrelib/pcre_ucd.c')
-rw-r--r--ext/pcre/pcrelib/pcre_ucd.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/pcre/pcrelib/pcre_ucd.c b/ext/pcre/pcrelib/pcre_ucd.c
index 33394a0395..0e4a42237d 100644
--- a/ext/pcre/pcrelib/pcre_ucd.c
+++ b/ext/pcre/pcrelib/pcre_ucd.c
@@ -1,9 +1,26 @@
#include "config.h"
+
#include "pcre_internal.h"
/* Unicode character database. */
/* This file was autogenerated by the MultiStage2.py script. */
/* Total size: 52808 bytes, block size: 128. */
+
+/* The tables herein are needed only when UCP support is built */
+/* into PCRE. This module should not be referenced otherwise, so */
+/* it should not matter whether it is compiled or not. However */
+/* a comment was received about space saving - maybe the guy linked */
+/* all the modules rather than using a library - so we include a */
+/* condition to cut out the tables when not needed. But don't leave */
+/* a totally empty module because some compilers barf at that. */
+/* Instead, just supply small dummy tables. */
+
+#ifndef SUPPORT_UCP
+const ucd_record _pcre_ucd_records[] = {{0,0,0 }};
+const uschar _pcre_ucd_stage1[] = {0};
+const pcre_uint16 _pcre_ucd_stage2[] = {0};
+#else
+
/* When recompiling tables with a new Unicode version,
please check types in the structure definition from pcre_internal.h:
typedef struct {
@@ -2606,3 +2623,4 @@ const pcre_uint16 _pcre_ucd_stage2[] = { /* 40448 bytes, block = 128 */
#if UCD_BLOCK_SIZE != 128
#error Please correct UCD_BLOCK_SIZE in pcre_internal.h
#endif
+#endif /* SUPPORT_UCP */