You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Linux (apt) version, in addition to the pointer declaration difference, there's an extra definition of the _uconv_t structure and its type alias: apt install libxml2-devlibxml/encoding.h
/* * Block defining the handlers for non UTF-8 encodings. * If iconv is supported, there are two extra fields. */#ifdefLIBXML_ICU_ENABLED/* Size of pivot buffer, same as icu/source/common/ucnv.cpp CHUNK_SIZE */#defineICU_PIVOT_BUF_SIZE 1024
struct_uconv_t {
UConverter*uconv; /* for conversion between an encoding and UTF-16 */UConverter*utf8; /* for conversion between UTF-8 and UTF-16 */UCharpivot_buf[ICU_PIVOT_BUF_SIZE];
UChar*pivot_source;
UChar*pivot_target;
};
typedefstruct_uconv_tuconv_t;
#endiftypedefstruct_xmlCharEncodingHandlerxmlCharEncodingHandler;
typedefxmlCharEncodingHandler*xmlCharEncodingHandlerPtr;
struct_xmlCharEncodingHandler {
char*name;
xmlCharEncodingInputFuncinput;
xmlCharEncodingOutputFuncoutput;
#ifdefLIBXML_ICONV_ENABLEDiconv_ticonv_in;
iconv_ticonv_out;
#endif/* LIBXML_ICONV_ENABLED */#ifdefLIBXML_ICU_ENABLEDuconv_t*uconv_in;
uconv_t*uconv_out;
#endif/* LIBXML_ICU_ENABLED */
};
In contrast, the macOS (brew) version only retains a forward declaration of the structure, without the complete structure definition and type alias.
/* * Block defining the handlers for non UTF-8 encodings. * If iconv is supported, there are two extra fields. */typedefstruct_xmlCharEncodingHandlerxmlCharEncodingHandler;
typedefxmlCharEncodingHandler*xmlCharEncodingHandlerPtr;
struct_xmlCharEncodingHandler {
char*name;
xmlCharEncodingInputFuncinput;
xmlCharEncodingOutputFuncoutput;
#ifdefLIBXML_ICONV_ENABLEDiconv_ticonv_in;
iconv_ticonv_out;
#endif/* LIBXML_ICONV_ENABLED */#ifdefLIBXML_ICU_ENABLEDstruct_uconv_t*uconv_in;
struct_uconv_t*uconv_out;
#endif/* LIBXML_ICU_ENABLED */
};
The text was updated successfully, but these errors were encountered:
libxml2 difference
In the Linux (apt) version, in addition to the pointer declaration difference, there's an extra definition of the _uconv_t structure and its type alias:
apt install libxml2-dev
libxml/encoding.h
In contrast, the macOS (brew) version only retains a forward declaration of the structure, without the complete structure definition and type alias.
The text was updated successfully, but these errors were encountered: