summaryrefslogtreecommitdiff
path: root/src/utils/dumplibs.cpp
AgeCommit message (Collapse)AuthorFilesLines
2025-06-05fix missing __xmlParserVersion() compat in newer libxml2, spotted by bakaiFedja Beader1-1/+7
libxml2 deprecated __xmlParserVersion() and added a pointer to constant string version in commit 2023-09-20 "globals: Don't store xmlParserVersion in global state" and added a compat function with it. This commit was made before v2.12.0 was released. Thus, any version *past* unreleased v2.12.0 is guaranteed to have the new API. The compat function was removed at some point later, causing a compile failure. **** mana/plus!190
2025-05-24Switch source code headers to ManaVerse & update copyrights to 2025Fedja Beader1-3/+3
.. instead of manaplus's header. & update copyrights to 2025. Open problem: should it be "The ManaVerse Client", "the ManaVerse client" or something in between in "This file is part of ..." line? All caps is current situation. Squashed with: * update copyright dates for 2025 * Revert "Switch to branch of mplint that checks for manaverse copyright headers" * Change back to uppercase The Why? This line was changed 3 times in history and all had an uppercase The. PS: ManaVerse has no endorsment from the parent project, ManaPlus. * Change to "This file is part of the ManaVerse Client" poppet says 'the' instead of 'The' find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e 's/This file is part of The ManaPlus Client/This file is part of the ManaVerse Client/' {} \+ * Change 'The ManaPlus Client' to 'The ManaVerse Client' in headers find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e '2s/ManaPlus/ManaVerse/' {} \+ * Switch to branch of mplint that checks for manaverse copyright headers .. instead of manaplus's **** mana/plus!179
2024-02-21Const correct variable to hold __xmlParserVersion() valueewewukek1-1/+1
2024-02-09Update copyright headers up to 2023Jesusalva Jesusalva1-1/+2
2019-01-01Update copyright year.Andrei Karas1-1/+1
2018-09-20Remove extra include.Andrei Karas1-2/+1
2018-09-20Add check for compiled/linked libxml2 version.Andrei Karas1-1/+17
2018-05-23Fix warnings in new clang5 builds.Andrei Karas1-0/+4
2018-01-04Update copyrights year.Andrei Karas1-1/+1
2017-10-07Revert "Disable warning -Wundef in zlib.h."Andrei Karas1-3/+0
This reverts commit a5c11b12df43565613fe1fd6514404d2c9fef7a8.
2017-10-07Disable warning -Wundef in zlib.h.Andrei Karas1-0/+3
2017-06-20Fix sdl warning hiding pragmas for old compilers.Andrei Karas1-3/+3
2017-06-20Prevent Wshadow varnings in SDL code.Andrei Karas1-0/+4
2017-06-07Fix clang-tidy check readability-implicit-bool-cast.Andrei Karas1-1/+1
2017-05-07Add possible SDL warning fix with gcc snapshot.Andrei Karas1-3/+3
2017-03-28Remove physfs support.Andrei Karas1-26/+0
2017-03-01Fix compilation without physfs if physfs not installed.Andrei Karas1-0/+2
2017-03-01Fix compilation without physfs.Andrei Karas1-0/+7
Also split fs related files to virtfs and physfs.
2017-02-21Add sdl mixer version into libs version dump.Andrei Karas1-0/+6
2017-02-07Fix compilation with pugixml.Andrei Karas1-0/+5
2017-02-07Fix compilation with gcc version below 4.6.Andrei Karas1-3/+3
2017-02-07Ignore warning -Wlong-long in physfs.Andrei Karas1-0/+3
2017-01-30Fix compilation with SDL 2.Andrei Karas1-1/+1
2017-01-30Add checks for compiler and linked libs in dumplibs.Andrei Karas1-2/+67
2017-01-22Add libphysfs version into dump libs.Andrei Karas1-0/+12
2017-01-20Remove extra include from dumplibs.cppAndrei Karas1-1/+0
2017-01-19Fix compilation warning in SDL in dumplibs.cppAndrei Karas1-0/+3
2017-01-19Fix compilation with SDL 2.Andrei Karas1-0/+9
2017-01-19Add libxml, libcurl, libpng into dumping lib versions.Andrei Karas1-0/+11
2017-01-19Add all used SDL libs into dumping compiled and linked versions.Andrei Karas1-2/+36
2017-01-19Dump on startup linked and loaded lib versions.Andrei Karas1-0/+35
For now only zlib supported. Also detect zlib by pkgconfig in configure.