View Single Post
  #12  
Old 05-26-2011, 10:13 AM
orkim
Sarnak
 
Join Date: Sep 2008
Location: -
Posts: 31
Default

While working on a fresh SVN compile, I had some issues to work through.

Specifically, here's what I did to make the compile work:

prepare.sh needs to be updated. It did not remove these files:
./eqlaunch/makefile.vc2003
./world/makefile.vc2003
./EQEmuLoginServer/makefile
./EQEmuLoginServer/makefile.common
./ucs/makefile
./ucs/makefile.common
./zone/makefile.vc2003
./EMuShareMem/makefile.vc2003

Hand edited ./ucs/Makefile (this should be done with autocof I'm sure, but I didn't follow through editing those files):
old value: LIBS = -lpthread
new value: LIBS = -lpthread -ldl

Hand edited ./zone/Makefile (again, autoconf, but I got it working):
am_zone_OBJECTS = line
This was missing: "QuestParserCollection.$(OBJEXT)" so I added it.

Everything compiled and worked after these few edits. Just wanted to let you know for any updates that you might like to do.

-ork
Reply With Quote