kc3-lang/libxml2

Branch :


Log

Author Commit Date CI Message
22f9d730 2025-10-15 15:39:43 io: Handle clashing error codes on AIX Regressed with 2c2578b6f. Fixes #999.
870c0363 2025-10-13 22:58:38 fuzz: Make fuzzy encoding match more lenient This should account for possible iconv suffixes.
367a283b 2025-10-07 01:05:03 tree: Undeprecate several struct members
3a3faaa2 2025-09-30 18:05:32 Document process to remove API functions in MAINTAINERS.md
2f62ebb3 2025-09-29 11:04:03 io: Undeprecate xmlOutputBuffer members The public API is too buggy, so direct access to struct members is required by projects like libxslt.
d87d9477 2025-09-29 10:46:47 Revert "globals: Don't export DllMain on Windows" This reverts commit bd2072f8d025e7a37d527b23b84698460c5798bf. Apparently, this change would require to recompile downstream code.
bd2072f8 2025-09-27 19:07:38 globals: Don't export DllMain on Windows This shouldn't be done and lld 21 warns about it: https://github.com/msys2/MINGW-packages/issues/17820 https://github.com/msys2/MINGW-packages/issues/25716 Regressed with f05af837.
a30a2764 2025-09-26 16:29:10 valid: Undeprecate xmlValidGetPotentialChildren Fixes #988.
c537ccf0 2025-09-25 11:29:05 Fixed compilation error on GCC versions prior to 4.5 The deprecated attribute started accepting an optional string argument in GCC version 4.5. Compiling libxml2 with GCC versions prior to that would cause compilation errors such as: ``` ./include/libxml/xmlmemory.h:134: error: wrong number of arguments specified for 'deprecated' attribute ``` Now the string argument is omitted for older versions of GCC. Signed-off-by: Lars Erik Wik <lars.erik.wik@northern.tech>
da45a190 2025-09-19 13:39:41 parser: Fix attribute normalization and standalone check Regressed with e4cbc295.