Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test with conan support #196

Open
luoliwoshang opened this issue Mar 5, 2025 · 1 comment
Open

test with conan support #196

luoliwoshang opened this issue Mar 5, 2025 · 1 comment
Labels
enhancement New feature or request

Comments

@luoliwoshang
Copy link
Contributor

luoliwoshang commented Mar 5, 2025

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

    /*
    * Block defining the handlers for non UTF-8 encodings.
    * If iconv is supported, there are two extra fields.
    */
    #ifdef LIBXML_ICU_ENABLED
    /* Size of pivot buffer, same as icu/source/common/ucnv.cpp CHUNK_SIZE */
    #define ICU_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 */
    UChar      pivot_buf[ICU_PIVOT_BUF_SIZE];
    UChar      *pivot_source;
    UChar      *pivot_target;
    };
    typedef struct _uconv_t uconv_t;
    #endif

typedef struct _xmlCharEncodingHandler xmlCharEncodingHandler;
typedef xmlCharEncodingHandler *xmlCharEncodingHandlerPtr;
struct _xmlCharEncodingHandler {
    char                       *name;
    xmlCharEncodingInputFunc   input;
    xmlCharEncodingOutputFunc  output;
#ifdef LIBXML_ICONV_ENABLED
    iconv_t                    iconv_in;
    iconv_t                    iconv_out;
#endif /* LIBXML_ICONV_ENABLED */
#ifdef LIBXML_ICU_ENABLED
    uconv_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.
 */
typedef struct _xmlCharEncodingHandler xmlCharEncodingHandler;
typedef xmlCharEncodingHandler *xmlCharEncodingHandlerPtr;
struct _xmlCharEncodingHandler {
    char *name;
    xmlCharEncodingInputFunc input;
    xmlCharEncodingOutputFunc output;
#ifdef LIBXML_ICONV_ENABLED
    iconv_t iconv_in;
    iconv_t iconv_out;
#endif /* LIBXML_ICONV_ENABLED */
#ifdef LIBXML_ICU_ENABLED
    struct _uconv_t *uconv_in;
    struct _uconv_t *uconv_out;
#endif /* LIBXML_ICU_ENABLED */
};
@luoliwoshang luoliwoshang added the enhancement New feature or request label Apr 2, 2025
@luoliwoshang
Copy link
Contributor Author

for lua5.4,need config different c toolchain

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant