Skip to content

Tags: nhoughto5/pugixml

Tags

v1.11.1

Toggle v1.11.1's commit message
docs: Rebuild HTML documentation

latest

Toggle latest's commit message
docs: Rebuild HTML documentation

v1.11

Toggle v1.11's commit message
scripts: Convert archive.py to Python 3

The changes are mostly mechanically converting str to bytes.

v1.10

Toggle v1.10's commit message
docs: Update documentation for 1.10 release

Update changelog and regenerate HTML documentation.

v1.9

Toggle v1.9's commit message
tests: Fix PUGIXML_COMPACT build on some platforms

We need bad_alloc that lives in <new>, not <exception>.

v1.8.1

Toggle v1.8.1's commit message
Fix archive script to set timestamps properly for .tar.gz

By default they are set to Jan 1 1970 which breaks homebrew.

Fixes zeux#124.

v1.8

Toggle v1.8's commit message
docs: Regenerate HTML documentation

v1.7

Toggle v1.7's commit message
docs: Update release date

v1.6

Toggle v1.6's commit message
docs: Update release date

v1.5

Toggle v1.5's commit message
Don't use off64_t/_wfopen on MinGW32 in C++11 mode

Unfortunately, standard headers on MinGW32 insist on undefining off64_t
and _wfopen extensions if __STRICT_ANSI__ is true (e.g. C++11 mode). This
leads to compilation errors since b7a1fec started to use _wfopen in strict
mode. That change erroneously checked GCC version - however, the version
itself is irrelevant; the actual criteria is whether mingw64 runtime is
used.

off64_t is not useful on MinGW32 since we only need it to open large files
on 64-bit platforms; unfortunately, the lack of _wfopen means we won't be
able to support wide-char paths on Windows for MinGW32.

Fixes zeux#24.