aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/makefile')
-rw-r--r--libxsde/xsde/makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/libxsde/xsde/makefile b/libxsde/xsde/makefile
index 51edf31..9787855 100644
--- a/libxsde/xsde/makefile
+++ b/libxsde/xsde/makefile
@@ -8,6 +8,12 @@ include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
c_tun := c/expat/xmlparse.c c/expat/xmlrole.c c/expat/xmltok.c
c_tun += c/genx/genx.c c/genx/char-props.c
+ifneq ($(xsde_parser_validation)$(xsde_serializer_validation),nn)
+ifeq ($(xsde_regexp),y)
+c_tun += c/regexp/chvalid.c c/regexp/xmlunicode.c c/regexp/xmlregexp.c
+endif
+endif
+
ifeq ($(xsde_custom_allocator),y)
ifeq ($(xsde_default_allocator),y)
c_tun += allocator.c
@@ -40,6 +46,11 @@ endif
ifneq ($(xsde_parser_validation)$(xsde_serializer_validation),nn)
cxx_tun += cxx/schema-error.cxx
+
+ifeq ($(xsde_regexp),y)
+cxx_tun += cxx/schema-error.cxx
+endif
+
endif
ifeq ($(xsde_polymorphic),y)
@@ -590,6 +601,11 @@ ifeq ($(xsde_serializer_validation),y)
else
@echo '#undef XSDE_SERIALIZER_VALIDATION' >>$@
endif
+ifeq ($(xsde_regexp),y)
+ @echo '#define XSDE_REGEXP' >>$@
+else
+ @echo '#undef XSDE_REGEXP' >>$@
+endif
ifeq ($(xsde_reuse_style),mixin)
@echo '#define XSDE_REUSE_STYLE_MIXIN' >>$@
else