diff options
author | cpu@google.com <cpu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-10 23:12:41 +0000 |
---|---|---|
committer | cpu@google.com <cpu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-10 23:12:41 +0000 |
commit | aff49a98eb00231e434ed942ede0c4ddb3886ea8 (patch) | |
tree | 800379b800feba61f6fdcd3e58b0c68d789fabb2 /third_party/libxml/linux | |
parent | 41f655f0e38a3968461dfc8ed86d6762f1c536d5 (diff) | |
download | chromium_src-aff49a98eb00231e434ed942ede0c4ddb3886ea8.zip chromium_src-aff49a98eb00231e434ed942ede0c4ddb3886ea8.tar.gz chromium_src-aff49a98eb00231e434ed942ede0c4ddb3886ea8.tar.bz2 |
Remove built-in network stack from libxml
- Removes HTTP and FTP
- Fixes a crash and other serious problems (see bug)
It does not appear to affect us because afaik we don't use it or when
we do we pass the no-network flag.
BUG=9937
Review URL: http://codereview.chromium.org/67041
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13546 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libxml/linux')
-rw-r--r-- | third_party/libxml/linux/include/libxml/xmlversion.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/libxml/linux/include/libxml/xmlversion.h b/third_party/libxml/linux/include/libxml/xmlversion.h index b6b2747..ab3fe86 100644 --- a/third_party/libxml/linux/include/libxml/xmlversion.h +++ b/third_party/libxml/linux/include/libxml/xmlversion.h @@ -165,7 +165,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version); * * Whether the FTP support is configured in */ -#if 1 +#if 0 #define LIBXML_FTP_ENABLED #endif @@ -174,7 +174,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version); * * Whether the HTTP support is configured in */ -#if 1 +#if 0 #define LIBXML_HTTP_ENABLED #endif |