buildorder.py: Minor nit fix
[termux-packages] / packages / libxml2 / 0001-Revert-Missing-initialization-for-the-catalog-module.patch
CommitLineData
d03dc20a
FF
1From f65128f38289d77ff322d63aef2858cc0a819c34 Mon Sep 17 00:00:00 2001
2From: Daniel Veillard <veillard@redhat.com>
3Date: Fri, 17 Oct 2014 17:13:41 +0800
4Subject: [PATCH] Revert "Missing initialization for the catalog module"
5
6This reverts commit 054c716ea1bf001544127a4ab4f4346d1b9947e7.
7As this break xmlcatalog command
8https://bugzilla.redhat.com/show_bug.cgi?id=1153753
9---
10 parser.c | 3 ---
11 1 file changed, 3 deletions(-)
12
13diff --git a/parser.c b/parser.c
14index 1d93967..67c9dfd 100644
15--- a/parser.c
16+++ b/parser.c
17@@ -14830,9 +14830,6 @@ xmlInitParser(void) {
18 #ifdef LIBXML_XPATH_ENABLED
19 xmlXPathInit();
20 #endif
21-#ifdef LIBXML_CATALOG_ENABLED
22- xmlInitializeCatalog();
23-#endif
24 xmlParserInitialized = 1;
25 #ifdef LIBXML_THREAD_ENABLED
26 }
27--
282.1.2
29