aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2003-09-29 13:20:24 +0000
committerDaniel Veillard <veillard@src.gnome.org>2003-09-29 13:20:24 +0000
commita9cce9cd0d7aff3ec318b5d8d376da131b6aaad4 (patch)
treeba5ba1b51fea7936c5ca1b90e23c2004df34c703 /configure.in
parentc064b476c8736c8c601e4d8fc480a5d998d9441f (diff)
downloadandroid_external_libxml2-a9cce9cd0d7aff3ec318b5d8d376da131b6aaad4.tar.gz
android_external_libxml2-a9cce9cd0d7aff3ec318b5d8d376da131b6aaad4.tar.bz2
android_external_libxml2-a9cce9cd0d7aff3ec318b5d8d376da131b6aaad4.zip
Okay this is scary but it is just adding a configure option to disable
* HTMLtree.c SAX2.c c14n.c catalog.c configure.in debugXML.c encoding.c entities.c nanoftp.c nanohttp.c parser.c relaxng.c testAutomata.c testC14N.c testHTML.c testRegexp.c testRelax.c testSchemas.c testXPath.c threads.c tree.c valid.c xmlIO.c xmlcatalog.c xmllint.c xmlmemory.c xmlreader.c xmlschemas.c example/gjobread.c include/libxml/HTMLtree.h include/libxml/c14n.h include/libxml/catalog.h include/libxml/debugXML.h include/libxml/entities.h include/libxml/nanohttp.h include/libxml/relaxng.h include/libxml/tree.h include/libxml/valid.h include/libxml/xmlIO.h include/libxml/xmlschemas.h include/libxml/xmlversion.h.in include/libxml/xpathInternals.h python/libxml.c: Okay this is scary but it is just adding a configure option to disable output, this touches most of the files. Daniel
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in16
1 files changed, 14 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 57bafa00..7b747764 100644
--- a/configure.in
+++ b/configure.in
@@ -527,8 +527,20 @@ if test "$with_history" = "yes" ; then
LDFLAGS=${_ldflags}
fi
-AC_SUBST(WITH_FTP)
-AC_SUBST(FTP_OBJ)
+AC_ARG_WITH(output,
+[ --with-output add the serialization support (on)])
+if test "$with_minimum" = "yes" -a "$with_output" = ""
+then
+ with_output=no
+fi
+if test "$with_output" = "no" ; then
+ echo Disabling serialization/saving support
+ WITH_OUTPUT=0
+else
+ WITH_OUTPUT=1
+fi
+AC_SUBST(WITH_OUTPUT)
+
AC_ARG_WITH(ftp,
[ --with-ftp add the FTP support (on)])
if test "$with_minimum" = "yes" -a "$with_ftp" = ""