aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-10-11 12:43:48 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-10-11 12:43:48 +0200
commit9553149aa6b6561c49981adf2848607a43765054 (patch)
treeff941ad89aa2c87ec5ddbd7a7bdd189fc33f87ba /build
parent0dd6d623af5dfe3590d0c269f76a2fa322e75e58 (diff)
Support for validation of the pattern facet
New test: hybrid/pattern.
Diffstat (limited to 'build')
-rw-r--r--build/configuration.make2
-rwxr-xr-xbuild/configure7
2 files changed, 9 insertions, 0 deletions
diff --git a/build/configuration.make b/build/configuration.make
index 0de6d47..cea0216 100644
--- a/build/configuration.make
+++ b/build/configuration.make
@@ -19,6 +19,7 @@ xsde_longlong :=
xsde_snprintf :=
xsde_parser_validation :=
xsde_serializer_validation :=
+xsde_regexp :=
xsde_reuse_style :=
xsde_custom_allocator :=
xsde_default_allocator :=
@@ -47,6 +48,7 @@ $(out_root)/%: xsde_longlong := $(xsde_longlong)
$(out_root)/%: xsde_snprintf := $(xsde_snprintf)
$(out_root)/%: xsde_parser_validation := $(xsde_parser_validation)
$(out_root)/%: xsde_serializer_validation := $(xsde_serializer_validation)
+$(out_root)/%: xsde_regexp := $(xsde_regexp)
$(out_root)/%: xsde_reuse_style := $(xsde_reuse_style)
$(out_root)/%: xsde_custom_allocator := $(xsde_custom_allocator)
$(out_root)/%: xsde_default_allocator := $(xsde_default_allocator)
diff --git a/build/configure b/build/configure
index 7e37c13..7f22df9 100755
--- a/build/configure
+++ b/build/configure
@@ -97,6 +97,12 @@ $echo
serializer_validation=`read_y_n y`
$echo
+$echo "Would you like to include regexp support for xs:pattern validation?"
+$echo
+
+regexp=`read_y_n y`
+
+$echo
$echo "Please select the base parser/serializer reuse style you would"
$echo "like to use:"
$echo
@@ -197,6 +203,7 @@ echo "xsde_longlong := $longlong" >>
echo "xsde_snprintf := $snprintf" >>$1
echo "xsde_parser_validation := $parser_validation" >>$1
echo "xsde_serializer_validation := $serializer_validation" >>$1
+echo "xsde_regexp := $regexp" >>$1
echo "xsde_reuse_style := $reuse_style" >>$1
echo "xsde_custom_allocator := $allocator" >>$1
echo "xsde_default_allocator := $allocator_default" >>$1