Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-01-12 | Blocked compilation of plugins that use unavailable functions | Haru | 1 | -0/+2 | |
- Rather than failing at runtime, plugins that try to access non-interfaced, unavailable functions or variables, will now show an error at compile-time. Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-07-11 | Fixed reserved __identifier violations | Haru | 1 | -3/+3 | |
- Complies with CERT DCL37-C - Fixes issue #293 (special thanks to elfring) Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-07-09 | Fixed status_calc_regen crash ↵ | panikon | 1 | -0/+4 | |
issue:http://hercules.ws/board/tracker/issue-1298-mapserver-crashed-item-check/ Follow up to 7cd967f812ab741c41c416fb9f7c2a921c36e947 | |||||
2014-07-08 | Extracted method to obtain SYSTEM_INFO from functions in sysinfo.c | panikon | 1 | -0/+1 | |
Added proper method to obtain page size in windows | |||||
2014-05-10 | Re-commit of "Fixed order of includes in all source files" | Haru | 1 | -16/+0 | |
This reverts commit 94657284973f4037596bae468ebfbee5c217e02b. | |||||
2014-05-10 | Revert "Fixed order of includes in all source files" | panikon | 1 | -0/+16 | |
This reverts commit b6b3f58795288701d0e162d43fa6f0a47af913b3. Fixes issue 8184 http://hercules.ws/board/tracker/issue-8184-cart-related/ | |||||
2014-05-09 | Fixed order of includes in all source files | Haru | 1 | -16/+0 | |
- Changed order according to the (upcoming) code style guidelines. - Fixes several issues caused by missing headers when their include order is changed or in plugins. Signed-off-by: Haru <haru@dotalux.com> | |||||
2014-04-17 | Added sysinfo (System Information) functionalities | Haru | 1 | -0/+62 | |
- More informative messages are displayed during startup, to make it easier to identify what system and environment Hercules is running. - Git/SVN revision detection is improved, separating the source version (cached at compile time) from the runtime version, in case the user updated their working copy without recompiling the server. Git version detection is also more reliable, in case a non-default branch is used. - The get_revision script command has been removed (as it was useless to begin with, after the switch to git). An alternative will be provided later, for feature-probing purposes. - The patch was tested under Linux (Gentoo / gcc 4.7 on i686 and x86_64, Debian 6 / gcc 4.4 on i686, Raspbian / gcc 4.6 on armv6l, CentOS 5 / gcc 4.1 on i686, CentOS 6 / gcc 4.4 on x86_64, Linux Mint 15 / gcc 4.7 on x86_64, OS X Mountain Lion / clang 5.0 and gcc 4.8 on x86_64, Cygwin-NT-5.1/gcc 4.8 on i686, FreeBSD 8 / gcc 4.2 on i386, FreeBSD 9 / gcc 4.2 on amd64, FreeBSD 10 / clang 3.3 on amd64, NetBSD 5 / gcc 4.1 on i386, NetBSD 6 / gcc 4.5 on amd64, OpenBSD 5 / gcc 4.2 on amd64, Solaris 11 / gcc 4.5 on i86pc, Windows 7 / Visual Studio 2012 on x86, Windows 8 / Visual Studio 2010 on WOW64, Windows 8.1 / Visual Studio 2013 on WOW64. Signed-off-by: Haru <haru@dotalux.com> |