View Single Post
  #17  
Old 06-21-2006, 07:02 PM
boscorillium
Fire Beetle
 
Join Date: Jun 2006
Posts: 23
Default

Ok, finally successfully built atleast World under VC2005. EMuShareMem built all along.

The problem I was having was that in EQWHTTPHandler.cpp, Base64.h was being included with an implicit path through the include paths. However, that was seeming to cause problems with a file named Base64.h in mysql's include directory.

So I just commented that line out and changed it to an explicitly pathed include, i.e.:

#include "../common/Socketlib/Base64.h"


On top of that, instead of including common/Socketlib in my includes path, I just went through and changed the include statements to explicitly pathed included files as opposed to implicitly pathed files.

Happy camper I am.

Haha, all compiling now. Bed time for sure, but fear me - LOL. j/k, Hope to be of help now.

Last edited by boscorillium; 06-22-2006 at 03:20 AM..
Reply With Quote