summaryrefslogtreecommitdiffstats
path: root/rules
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2006-11-21 08:28:47 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2006-11-21 08:28:47 +0000
commit2e39d8e6d1c7b35623fc96b42bf75cec60b6302f (patch)
treedc8f44471b118d02d673f82cc30ba6713c7a76a3 /rules
parent346b7df9010b7335f12a64daadc53bdcf720bf91 (diff)
downloadptxdist-2e39d8e6d1c7b35623fc96b42bf75cec60b6302f.tar.gz
ptxdist-2e39d8e6d1c7b35623fc96b42bf75cec60b6302f.tar.xz
* libxml2: new config option
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@6354 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules')
-rw-r--r--rules/libxml2.in9
-rw-r--r--rules/libxml2.make6
2 files changed, 15 insertions, 0 deletions
diff --git a/rules/libxml2.in b/rules/libxml2.in
index 8766fb19b..2b09df603 100644
--- a/rules/libxml2.in
+++ b/rules/libxml2.in
@@ -200,6 +200,14 @@ config LIBXML2_SCHEMAS
help
Add Relay-NG and experimental Schemas support
+config LIBXML2_SCHEMATRON
+ bool
+ default y
+ depends on LIBXML2
+ prompt "Schematron Support"
+ help
+ Add Schematron support
+
config LIBXML2_THREADS
bool
default y
@@ -276,3 +284,4 @@ config LIBXML2_ZLIB
default y
depends on LIBXML2
prompt "zlib (compression) support"
+
diff --git a/rules/libxml2.make b/rules/libxml2.make
index 4b4886785..8cc039431 100644
--- a/rules/libxml2.make
+++ b/rules/libxml2.make
@@ -205,6 +205,12 @@ else
LIBXML2_AUTOCONF += --without-schemas
endif
+ifdef PTXCONF_LIBXML2_SCHEMATRON
+LIBXML2_AUTOCONF += --with-schematron
+else
+LIBXML2_AUTOCONF += --without-schematron
+endif
+
ifdef PTXCONF_LIBXML2_THREADS
LIBXML2_AUTOCONF += --with-threads
else