View | Details | Raw Unified | Return to bug 279968 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/tclxml/files/patch-docObj.c (+13 lines)
Added Link Here
1
--- docObj.c.orig	2013-03-30 17:17:07 UTC
2
+++ docObj.c
3
@@ -1852,9 +1852,7 @@ void
4
 }
5
 
6
 void
7
-TclXML_libxml2_ErrorHandler (ctx, error)
8
-     void *ctx; /* ignore - depends on context */
9
-     xmlErrorPtr error;
10
+TclXML_libxml2_ErrorHandler (void *ctx, const xmlError *error)
11
 {
12
   ThreadSpecificData *tsdPtr = Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
13
   Tcl_Obj *objPtr;
(-)b/devel/tclxml/files/patch-include_tclxml-libxml2_tclxml-libxml2Decls.h (+11 lines)
Added Link Here
1
--- include/tclxml-libxml2/tclxml-libxml2Decls.h.orig	2013-03-30 17:17:07 UTC
2
+++ include/tclxml-libxml2/tclxml-libxml2Decls.h
3
@@ -55,7 +55,7 @@ EXTERN void		TclXML_libxml2_ErrorHandler _ANSI_ARGS_((
4
 				TclXML_libxml2_DocumentHandling keep));
5
 /* 10 */
6
 EXTERN void		TclXML_libxml2_ErrorHandler _ANSI_ARGS_((void * ctx, 
7
-				xmlErrorPtr error));
8
+				const xmlError *error));
9
 /* 11 */
10
 EXTERN void		TclXML_libxml2_ResetError _ANSI_ARGS_((
11
 				Tcl_Interp * interp));
(-)b/devel/tclxml/files/patch-tclxml.c (+11 lines)
Added Link Here
1
--- tclxml.c.orig	2013-03-30 17:17:07 UTC
2
+++ tclxml.c
3
@@ -20,6 +20,8 @@
4
 #include <tclxslt/tclxslt.h>
5
 #include <string.h>
6
 
7
+int Tcldom_libxml2_Init ( Tcl_Interp *interp );
8
+
9
 #define TCL_DOES_STUBS \
10
     (TCL_MAJOR_VERSION > 8 || TCL_MAJOR_VERSION == 8 && (TCL_MINOR_VERSION > 1 || \
11
     (TCL_MINOR_VERSION == 1 && TCL_RELEASE_LEVEL == TCL_FINAL_RELEASE)))

Return to bug 279968