mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
include: Move globals from xmlsave.h to parser.h
Fix downstream build issues after reworking globals.h.
This commit is contained in:
parent
c011e7605d
commit
9122ad0ce6
@ -65,7 +65,6 @@ ignored_words = {
|
|||||||
"XML_GLOBALS_ERROR": (0, "macro keyword"),
|
"XML_GLOBALS_ERROR": (0, "macro keyword"),
|
||||||
"XML_GLOBALS_IO": (0, "macro keyword"),
|
"XML_GLOBALS_IO": (0, "macro keyword"),
|
||||||
"XML_GLOBALS_PARSER": (0, "macro keyword"),
|
"XML_GLOBALS_PARSER": (0, "macro keyword"),
|
||||||
"XML_GLOBALS_SAVE": (0, "macro keyword"),
|
|
||||||
"XML_GLOBALS_TREE": (0, "macro keyword"),
|
"XML_GLOBALS_TREE": (0, "macro keyword"),
|
||||||
"XML_THREAD_LOCAL": (0, "macro keyword"),
|
"XML_THREAD_LOCAL": (0, "macro keyword"),
|
||||||
}
|
}
|
||||||
|
@ -80,7 +80,6 @@ XML_GLOBALS_ALLOC
|
|||||||
XML_GLOBALS_ERROR
|
XML_GLOBALS_ERROR
|
||||||
XML_GLOBALS_IO
|
XML_GLOBALS_IO
|
||||||
XML_GLOBALS_PARSER
|
XML_GLOBALS_PARSER
|
||||||
XML_GLOBALS_SAVE
|
|
||||||
XML_GLOBALS_TREE
|
XML_GLOBALS_TREE
|
||||||
#undef XML_OP
|
#undef XML_OP
|
||||||
};
|
};
|
||||||
@ -893,7 +892,6 @@ XML_GLOBALS_ALLOC
|
|||||||
XML_GLOBALS_ERROR
|
XML_GLOBALS_ERROR
|
||||||
XML_GLOBALS_IO
|
XML_GLOBALS_IO
|
||||||
XML_GLOBALS_PARSER
|
XML_GLOBALS_PARSER
|
||||||
XML_GLOBALS_SAVE
|
|
||||||
XML_GLOBALS_TREE
|
XML_GLOBALS_TREE
|
||||||
#undef XML_OP
|
#undef XML_OP
|
||||||
|
|
||||||
|
@ -872,7 +872,10 @@ XMLPUBFUN const xmlSAXHandlerV1 *__xmlDefaultSAXHandler(void);
|
|||||||
XML_OP(xmlLoadExtDtdDefaultValue, int, XML_DEPRECATED) \
|
XML_OP(xmlLoadExtDtdDefaultValue, int, XML_DEPRECATED) \
|
||||||
XML_OP(xmlParserDebugEntities, int, XML_DEPRECATED) \
|
XML_OP(xmlParserDebugEntities, int, XML_DEPRECATED) \
|
||||||
XML_OP(xmlPedanticParserDefaultValue, int, XML_DEPRECATED) \
|
XML_OP(xmlPedanticParserDefaultValue, int, XML_DEPRECATED) \
|
||||||
XML_OP(xmlSubstituteEntitiesDefaultValue, int, XML_DEPRECATED)
|
XML_OP(xmlSubstituteEntitiesDefaultValue, int, XML_DEPRECATED) \
|
||||||
|
XML_OP(xmlIndentTreeOutput, int, XML_EMPTY) \
|
||||||
|
XML_OP(xmlTreeIndentString, const char *, XML_EMPTY) \
|
||||||
|
XML_OP(xmlSaveNoEmptyTags, int, XML_EMPTY)
|
||||||
|
|
||||||
#define XML_OP XML_DECLARE_GLOBAL
|
#define XML_OP XML_DECLARE_GLOBAL
|
||||||
XML_GLOBALS_PARSER
|
XML_GLOBALS_PARSER
|
||||||
@ -895,6 +898,9 @@ XML_GLOBALS_PARSER
|
|||||||
XML_GLOBAL_MACRO(xmlPedanticParserDefaultValue)
|
XML_GLOBAL_MACRO(xmlPedanticParserDefaultValue)
|
||||||
#define xmlSubstituteEntitiesDefaultValue \
|
#define xmlSubstituteEntitiesDefaultValue \
|
||||||
XML_GLOBAL_MACRO(xmlSubstituteEntitiesDefaultValue)
|
XML_GLOBAL_MACRO(xmlSubstituteEntitiesDefaultValue)
|
||||||
|
#define xmlIndentTreeOutput XML_GLOBAL_MACRO(xmlIndentTreeOutput)
|
||||||
|
#define xmlTreeIndentString XML_GLOBAL_MACRO(xmlTreeIndentString)
|
||||||
|
#define xmlSaveNoEmptyTags XML_GLOBAL_MACRO(xmlSaveNoEmptyTags)
|
||||||
#endif
|
#endif
|
||||||
/** DOC_ENABLE */
|
/** DOC_ENABLE */
|
||||||
|
|
||||||
|
@ -41,23 +41,6 @@ typedef enum {
|
|||||||
typedef struct _xmlSaveCtxt xmlSaveCtxt;
|
typedef struct _xmlSaveCtxt xmlSaveCtxt;
|
||||||
typedef xmlSaveCtxt *xmlSaveCtxtPtr;
|
typedef xmlSaveCtxt *xmlSaveCtxtPtr;
|
||||||
|
|
||||||
/** DOC_DISABLE */
|
|
||||||
#define XML_GLOBALS_SAVE \
|
|
||||||
XML_OP(xmlIndentTreeOutput, int, XML_EMPTY) \
|
|
||||||
XML_OP(xmlTreeIndentString, const char *, XML_EMPTY) \
|
|
||||||
XML_OP(xmlSaveNoEmptyTags, int, XML_EMPTY)
|
|
||||||
|
|
||||||
#define XML_OP XML_DECLARE_GLOBAL
|
|
||||||
XML_GLOBALS_SAVE
|
|
||||||
#undef XML_OP
|
|
||||||
|
|
||||||
#if defined(LIBXML_THREAD_ENABLED) && !defined(XML_GLOBALS_NO_REDEFINITION)
|
|
||||||
#define xmlIndentTreeOutput XML_GLOBAL_MACRO(xmlIndentTreeOutput)
|
|
||||||
#define xmlTreeIndentString XML_GLOBAL_MACRO(xmlTreeIndentString)
|
|
||||||
#define xmlSaveNoEmptyTags XML_GLOBAL_MACRO(xmlSaveNoEmptyTags)
|
|
||||||
#endif
|
|
||||||
/** DOC_ENABLE */
|
|
||||||
|
|
||||||
XMLPUBFUN xmlSaveCtxtPtr
|
XMLPUBFUN xmlSaveCtxtPtr
|
||||||
xmlSaveToFd (int fd,
|
xmlSaveToFd (int fd,
|
||||||
const char *encoding,
|
const char *encoding,
|
||||||
@ -108,12 +91,6 @@ XMLPUBFUN int
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#else /* LIBXML_OUTPUT_ENABLED */
|
|
||||||
|
|
||||||
/** DOC_DISABLE */
|
|
||||||
#define XML_GLOBALS_SAVE
|
|
||||||
/** DOC_ENABLE */
|
|
||||||
|
|
||||||
#endif /* LIBXML_OUTPUT_ENABLED */
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
||||||
#endif /* __XML_XMLSAVE_H__ */
|
#endif /* __XML_XMLSAVE_H__ */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user