summaryrefslogtreecommitdiff
path: root/src/Makefile.am
AgeCommit message (Collapse)AuthorFilesLines
2025-02-22Set C++11 as default C++ standardFedja Beader1-2/+4
Autoconf manual states that CXXFLAGS is a user variable and should not be overriden, so I did not use AX_APPEND_COMPILE_FLAGS for this. Thus, there are not checks if the compiler supports it, but also the builder can override this flag by passing another flag that overrides it on the command line. Okay, this is now way too theoretical. Indeed, the override happens with ./configure 'CXXFLAGS=-std=c++17' (both flags in final command line) Do note: - The standard has not explicitly set for some builds (thus compiler default was used) - The default on my own box is C++17 - I'm setting C++11 as that's required by my previous change. Upgrade to C++17 is deferred to until it becomes required. - The use of CPPFLAGS could be reviewed... they may be used incorrectly (instead of CXXFLAGS).
2019-05-31Fix compilation warnings with new mesa and SDL 1.2Andrei Karas1-0/+5
Add workaround to fix SDL redefine bug.
2019-05-14Add packet CMSG_REFINE_ADD_ITEM 0x0aa1Andrei Karas1-0/+5
2019-05-14Add packet SMSG_REFINE_WINDOW_OPEN 0x0aa0Andrei Karas1-0/+2
2019-01-25Add packet CMSG_NPC_BARTER_CLOSE 0x0b12Andrei Karas1-0/+7
2018-09-26Add packet SMSG_PLAYER_COMBINED_INVENTORY 0x0b09.Andrei Karas1-1/+1
2018-09-26Add inventory type enum for future packets.Andrei Karas1-0/+1
2018-09-26Add packet CMSG_ACHIEVEMENT_GET_REWARD 0x0a25.Andrei Karas1-0/+5
2018-09-26Add packet SMSG_ACHIEVEMENT_LIST 0x0a23.Andrei Karas1-0/+2
2018-09-07Add basic performance counters.Andrei Karas1-0/+3
Add in debug window new tab with this counters.
2018-09-07Add stats tab into debug window. Move LPS counter into stats tab.Andrei Karas1-0/+2
2018-09-06Split debugwindowtabs into separate tab files.Andrei Karas1-2/+7
2018-07-30Split updateprotocol.cpp into files for lower memory usage in compilation.Andrei Karas1-0/+6
2018-07-26Update shuffle packets for new packet versions.Andrei Karas1-0/+1
Split main and re shuffle files.
2018-06-19Disable iterators debuging in clang builds [ci skip].Andrei Karas1-2/+4
Look like it have false positives or some other issues.
2018-05-22Add configure option for enable/disable accepting password from command line.Andrei Karas1-0/+4
2018-05-05Remove support for CILK plus.Andrei Karas1-5/+0
2018-04-17Add packet SMSG_OPEN_WINDOW2 0x0ae2.s20180419Andrei Karas1-0/+2
2018-04-17Add empty attendance handler.Andrei Karas1-0/+5
2018-03-08Add support for change pin code by server request.Andrei Karas1-0/+2
2018-03-08Add support for enter auth pincode.Andrei Karas1-0/+2
2018-03-07Add support for set new pincode.Andrei Karas1-2/+9
Add pincode dialog and widget.
2018-03-05Add empty pincode manager.Andrei Karas1-0/+2
2018-03-02Add unit tests for itemxmlutils.Andrei Karas1-0/+1
2018-02-26Rename themecolortype.h into themecolortype.inc.Andrei Karas1-1/+1
2018-02-19Move theme colors enums and strings into combined file.Andrei Karas1-0/+1
2018-02-17Move vector class into resources directory.Andrei Karas1-2/+2
2018-02-16Add clang debug flag into configure flag --enable-glibcdebug.Andrei Karas1-2/+2
2018-02-16Revert "Add -D_GLIBCXX_CONCEPT_CHECKS into glibc debug flags."Andrei Karas1-2/+2
This reverts commit e9032dbe7344c5dc9832008f2fbcc448c88eec29. Look like in some compilers this check creating issues.
2018-02-16Add -D_GLIBCXX_CONCEPT_CHECKS into glibc debug flags.Andrei Karas1-2/+2
2018-02-13Add claninfo.h into make files.Andrei Karas1-0/+1
2018-02-13Add clan window.Andrei Karas1-0/+4
For now can be opened only by chat command /clan.
2018-02-11Add clandb support.Andrei Karas1-0/+3
2018-02-11Move reading and combining item stats into separate file.Andrei Karas1-0/+3
2018-02-11Rename clanInfo into localClan.Andrei Karas1-2/+2
2018-02-11Add basic support for clans.Andrei Karas1-0/+2
2018-02-09Collect clan info information in clan object.Andrei Karas1-0/+2
2018-02-09Impliment packet CMSG_CLAN_MESSAGE 0x098d.Andrei Karas1-0/+4
2018-02-08Add packet SMSG_CLAN_INFO 0x098a.Andrei Karas1-0/+2
2018-01-06Add shuffle packets for main and zero clients.Andrei Karas1-1/+2
2018-01-05Split packets file into normal and shuffle packets.Andrei Karas1-0/+1
2017-12-29Add tests for staticbrowserbox.Andrei Karas1-0/+1
2017-11-04Add workaround for fix compilation with tinyxml2 from master branch.s20171107Andrei Karas1-0/+7
In tinyxml2 was unversioned api breakage in master branch.
2017-10-25Add sdlmusichelper with some SDL/SDL2 functions.Andrei Karas1-0/+4
2017-10-25Add configure options for build only tests binary with system catch and doctest.Andrei Karas1-0/+7
2017-10-25Add configure options for build with system catch and doctest.Andrei Karas1-0/+3
2017-10-10Split unit tests for mount dir and mount zip into separate files.Andrei Karas1-2/+4
2017-09-18Move imagewriter into utils directory and rename to pnglib.Andrei Karas1-2/+2
2017-09-11Rename setup_other.cpp into setup_misc.cppAndrei Karas1-2/+2
Same with .h files.
2017-09-09Add workaround for fix alt-tab issue in SDL2.Andrei Karas1-0/+1
Also add option to enable/disable this workaround.