From 16f92b290157b3af2a1037ca854832348b4ad015 Mon Sep 17 00:00:00 2001 From: "mtilden@gmail.com" Date: Tue, 31 Jan 2012 05:37:59 +0000 Subject: Linux fixes, but while it compiles, when a user joins it crashes the server with "*** glibc detected *** ./MCServer: double free or corruption (out): 0x00007fb5f5158db0 ***" Please look into this. Also, am I the only one compiling/using Linux? git-svn-id: http://mc-server.googlecode.com/svn/trunk@198 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index db7abd75b..3b286f906 100644 --- a/makefile +++ b/makefile @@ -506,6 +506,8 @@ clean : build/cCriticalSection.o\ build/cEntity.o\ build/cEvent.o\ + build/cEvents.o\ + build/cFile.o\ build/cFurnaceEntity.o\ build/cFurnaceRecipe.o\ build/cFurnaceWindow.o\ @@ -757,6 +759,11 @@ build/cEntity.o : source/cEntity.cpp build/cEvent.o : source/cEvent.cpp $(CC) $(CC_OPTIONS) source/cEvent.cpp -c $(INCLUDE) -o build/cEvent.o +build/cEvents.o : WebServer/cEvents.cpp + $(CC) $(CC_OPTIONS) WebServer/cEvents.cpp -c $(INCLUDE) -o build/cEvents.o + +build/cFile.o : source/cFile.cpp + $(CC) $(CC_OPTIONS) source/cFile.cpp -c $(INCLUDE) -o build/cFile.o # Item # 16 -- cFurnaceEntity -- build/cFurnaceEntity.o : source/cFurnaceEntity.cpp @@ -1521,10 +1528,4 @@ build/cPlugin_NewLua.o : source/cPlugin_NewLua.cpp build/cWebPlugin_Lua.o : source/cWebPlugin_Lua.cpp $(CC) $(CC_OPTIONS) source/cWebPlugin_Lua.cpp -c $(INCLUDE) -o build/cWebPlugin_Lua.o -build/cEvents.o : webserver/cEvents.cpp - $(CC) $(CC_OPTIONS) webserver/cEvents.cpp -c $(INCLUDE) -o build/cEvents.o - -build/cFile.o : source/cFile.cpp - $(CC) $(CC_OPTIONS) source/cFile.cpp -c $(INCLUDE) -o build/cFile.o - ##### END RUN #### -- cgit v1.2.3