diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 6 | ||||
-rw-r--r-- | src/common/permissionmanager.cpp | 1 | ||||
-rw-r--r-- | src/scripting/lua.cpp | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 6d24b571..78c7d80f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -85,6 +85,8 @@ manaserv_game_SOURCES = \ common/configuration.hpp \ common/configuration.cpp \ common/inventorydata.hpp \ + common/permissionmanager.hpp \ + common/permissionmanager.cpp \ game-server/accountconnection.hpp \ game-server/accountconnection.cpp \ game-server/actor.hpp \ @@ -100,13 +102,13 @@ manaserv_game_SOURCES = \ game-server/command.cpp \ game-server/commandhandler.cpp \ game-server/commandhandler.hpp \ + game-server/effect.hpp \ + game-server/effect.cpp \ game-server/eventlistener.hpp \ game-server/gamehandler.hpp \ game-server/gamehandler.cpp \ game-server/inventory.hpp \ game-server/inventory.cpp \ - game-server/effect.hpp \ - game-server/effect.cpp \ game-server/item.hpp \ game-server/item.cpp \ game-server/itemmanager.hpp \ diff --git a/src/common/permissionmanager.cpp b/src/common/permissionmanager.cpp index e363ebcd..8966f11f 100644 --- a/src/common/permissionmanager.cpp +++ b/src/common/permissionmanager.cpp @@ -25,6 +25,7 @@ #include "utils/logger.h" #include "utils/xml.hpp" +#include <string.h> static std::map<std::string, unsigned char> permissions; static std::map<std::string, unsigned char> aliases; diff --git a/src/scripting/lua.cpp b/src/scripting/lua.cpp index 5813836e..004756a2 100644 --- a/src/scripting/lua.cpp +++ b/src/scripting/lua.cpp @@ -49,6 +49,8 @@ extern "C" { #include "scripting/luascript.hpp" #include "utils/logger.h" +#include <string.h> + /* * This file includes all script bindings available to LUA scripts. * When you add or change a script binding please document it on |