From 5ee57fc9ae4f83cbb9a35d4478a4c7bc4e737139 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Mon, 15 Oct 2001 10:46:16 +0000 Subject: [PATCH] Norm reported that a few lines added were breaking libxslt compile, * include/libxml/parser.h: Norm reported that a few lines added were breaking libxslt compile, removed them for now Daniel --- ChangeLog | 5 +++++ include/libxml/parser.h | 6 ------ threads.c | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 65cd848b..58618d55 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 15 12:45:03 CEST 2001 Daniel Veillard + + * include/libxml/parser.h: Norm reported that a few lines + added were breaking libxslt compile, removed them for now + Sun Oct 14 05:55:01 EDT 2001 Daniel Veillard * parser.c parserInternals.c threads.c: debugged and fixed diff --git a/include/libxml/parser.h b/include/libxml/parser.h index 115612c4..a3ab9566 100644 --- a/include/libxml/parser.h +++ b/include/libxml/parser.h @@ -574,12 +574,6 @@ xmlParserInputPtr xmlLoadExternalEntity (const char *URL, const char *ID, xmlParserCtxtPtr context); -#include -/* - * Parser Locking - */ -int xmlLockContext(xmlParserCtxtPtr ctxt); -int xmlUnlockContext(xmlParserCtxtPtr ctxt); #ifdef __cplusplus } diff --git a/threads.c b/threads.c index 49ada346..69dfe931 100644 --- a/threads.c +++ b/threads.c @@ -74,7 +74,7 @@ struct _xmlRMutex { static int initialized = 0; #ifdef HAVE_PTHREAD_H -static pthread_mutex_t keylock = PTHREAD_MUTEX_INITIALIZER; +static pthread_mutex_t keylock = PTHREAD_MUTEX_INITIALIZER; static pthread_key_t globalkey; static int keyonce = 0; static pthread_t mainthread;