Can't find iconv
Security: heap-buffer-overflow in htmlcxx::HTML::Node::parseAttributes()
fix compilation using cpp 20 standard
GCC 11 / C++-17 fix
Building with MSYS2/MinGW-w64
hi, There is no glibc be used in cygwin . It use the libiconv. In the iconv.h , the symbol iconv_open is a macro definition. The real function is libiconv_open. I think diff --git a/configure.ac b/configure.ac index 302d74d..3e0b9e6 100644 --- a/configure.ac +++ b/configure.ac @@ -20,6 +20,7 @@ AC_PROG_LIBTOOL # Replace `main' with a function in -lfl: AC_CHECK_LIB(fl, main) AC_CHECK_LIB(iconv, iconv_open) +AC_CHECK_LIB(iconv, libiconv_open) # Checks for header files.
Fix package name.
Update readme.
Update html/utils.cc
Update html/utils.cc
fixed a case where you can traverse unowned memory. probably more cases of this, but this one in particular bit me.
Bump version.
Updated README.
Fix tests.cc when run with no arguments
Thanks a lot!
error: 'ptrdiff_t' does not name a type
Thanks a lot! Added in git head.
htmlcxx-devel.x86_64: E: incorrect-fsf-address /usr/include/htmlcxx/html/tree.h
Thanks a lot!
Compiler errror
Undefined behavior in utils.cc
Not enough information to reproduce.
Compilation fails on clang due to use of internal GCC headers
Thanks a lot for the fix. I have incorporated in the git head (just took a couple...
Fix char_traits.h compilation failure.
Fix incorrect-fsf-address /usr/include/htmlcxx/...
Fix error: 'ptrdiff_t' does not name a type
Fix tests.cc when run with no arguments
htmlcxx-devel.x86_64: E: incorrect-fsf-address /usr/include/htmlcxx/html/tree.h
error: 'ptrdiff_t' does not name a type
Fix tests.cc when run with no arguments
Do not create empty attributes for tags.