summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Miller <shadowmil@gmail.com>2010-01-17 00:29:41 -0500
committerChuck Miller <shadowmil@gmail.com>2010-01-17 00:29:41 -0500
commit6836044c32b90828ea90c61ca4f6ad06d12db2fb (patch)
treea1caa1ebbb53228b1410fa5865b35e3f8baf3c96
parentbbd227b9ff360c4ef7bf1fbf394e01d96e172cdc (diff)
downloadmanaserv-6836044c32b90828ea90c61ca4f6ad06d12db2fb.tar.gz
manaserv-6836044c32b90828ea90c61ca4f6ad06d12db2fb.tar.bz2
manaserv-6836044c32b90828ea90c61ca4f6ad06d12db2fb.tar.xz
manaserv-6836044c32b90828ea90c61ca4f6ad06d12db2fb.zip
Added some missing headers, and added some missing files to Makefile.am
-rw-r--r--src/Makefile.am6
-rw-r--r--src/common/permissionmanager.cpp1
-rw-r--r--src/scripting/lua.cpp2
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