Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::General Support

Support::General Support Post all topics here having to do with errors while trying to connect to an EQEMu server but not about the setup/running of the Server itself.

Reply
 
Thread Tools Display Modes
  #1  
Old 06-05-2009, 10:27 PM
joechimo
Fire Beetle
 
Join Date: Mar 2007
Posts: 4
Default EQEmu source downloads

Hey guys,

I've recently had an EQ fix on one of the servers with some friends, and I decided that I had to set one of these babies up onto one of my servers. I'm really interested in setting up a server and messing around with it for awhile, but the all the downloads are link dead, and I am unable to download the source from the site.

Is this something that is temporary or would I need to optain them from another site?

Thanks,
JoeChimo
Reply With Quote
  #2  
Old 06-06-2009, 12:44 AM
ChaosSlayerZ's Avatar
ChaosSlayerZ
Demi-God
 
Join Date: Mar 2009
Location: Umm
Posts: 1,492
Default

http://code.google.com/p/projecteqemu/downloads/list ?
Reply With Quote
  #3  
Old 06-07-2009, 09:29 PM
joechimo
Fire Beetle
 
Join Date: Mar 2007
Posts: 4
Default

Thanks for the link, but I am looking for the uncompiled source. My server runs a Linux distro and I need to find downloadable source.

Does anyone else have a working link to the source?
Reply With Quote
  #4  
Old 06-07-2009, 09:31 PM
leslamarch
Discordant
 
Join Date: Sep 2006
Location: Green Bay, WI
Posts: 436
Default

Quote:
Originally Posted by joechimo View Post
Thanks for the link, but I am looking for the uncompiled source. My server runs a Linux distro and I need to find downloadable source.

Does anyone else have a working link to the source?
HERE
Code:
http://projecteqemu.googlecode.com/svn/trunk/
Reply With Quote
  #5  
Old 06-07-2009, 10:10 PM
joechimo
Fire Beetle
 
Join Date: Mar 2007
Posts: 4
Default

Was this compiled lately, because i'm getting errors in clientlist.cpp on line 229 for sort and unique not being declared.
Reply With Quote
  #6  
Old 06-07-2009, 10:48 PM
leslamarch
Discordant
 
Join Date: Sep 2006
Location: Green Bay, WI
Posts: 436
Default

rev 636 compiles fine for me but I'm compiling under windows :(
Reply With Quote
  #7  
Old 06-07-2009, 11:39 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

I compiled 633 in Linux yesterday and it worked fine.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote
  #8  
Old 06-08-2009, 12:44 AM
gaeorn
Developer
 
Join Date: Apr 2009
Location: USA
Posts: 478
Default

Add this at the top of the file and it should compile fine:

Code:
#include <algorithm>
Reply With Quote
  #9  
Old 06-08-2009, 11:17 AM
joechimo
Fire Beetle
 
Join Date: Mar 2007
Posts: 4
Default

After adding the include, I am continuing to get the same error:

Code:
In file included from clientlist.cpp:25:
clientlist.h:45: warning: ‘typedef’ was ignored in this declaration
clientlist.cpp: In function ‘std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > ParseRecipients(std::string)’:
clientlist.cpp:229: error: ‘sort’ was not declared in this scope
clientlist.cpp:231: error: ‘unique’ was not declared in this scope
clientlist.cpp: In function ‘void ProcessMailTo(Client*, std::string)’:
clientlist.cpp:322: warning: format not a string literal and no format arguments
clientlist.cpp:323: warning: format not a string literal and no format arguments
clientlist.cpp: In function ‘void ProcessCommandBuddy(Client*, std::string)’:
clientlist.cpp:417: warning: format not a string literal and no format arguments
clientlist.cpp:421: warning: format not a string literal and no format arguments
clientlist.cpp: In function ‘void ProcessCommandIgnore(Client*, std::string)’:
clientlist.cpp:467: warning: format not a string literal and no format arguments
clientlist.cpp: In member function ‘void Client::SendMailBoxes()’:
clientlist.cpp:933: warning: format not a string literal and no format arguments
clientlist.cpp: In member function ‘void Client::JoinChannels(std::string)’:
clientlist.cpp:1090: warning: format not a string literal and no format arguments
clientlist.cpp: In member function ‘void Client::LeaveChannels(std::string)’:
clientlist.cpp:1178: warning: format not a string literal and no format arguments
clientlist.cpp: In member function ‘void Client::SendChannelList()’:
clientlist.cpp:1262: warning: format not a string literal and no format arguments
clientlist.cpp: In member function ‘void Client::SendChannelMessage(std::string)’:
clientlist.cpp:1284: warning: suggest explicit braces to avoid ambiguous ‘else’
clientlist.cpp: In member function ‘void Client::SendChannelMessage(std::string, std::string, Client*)’:
clientlist.cpp:1438: warning: format not a string literal and no format arguments
clientlist.cpp:1439: warning: format not a string literal and no format arguments
clientlist.cpp:1440: warning: format not a string literal and no format arguments
clientlist.cpp: In member function ‘void Client::AnnounceJoin(ChatChannel*, Client*)’:
clientlist.cpp:1472: warning: format not a string literal and no format arguments
clientlist.cpp:1473: warning: format not a string literal and no format arguments
clientlist.cpp: In member function ‘void Client::AnnounceLeave(ChatChannel*, Client*)’:
clientlist.cpp:1492: warning: format not a string literal and no format arguments
clientlist.cpp:1493: warning: format not a string literal and no format arguments
clientlist.cpp: In member function ‘void Client::GeneralChannelMessage(std::string)’:
clientlist.cpp:1518: warning: format not a string literal and no format arguments
clientlist.cpp: In member function ‘void Client::ChannelModerate(std::string)’:
clientlist.cpp:1797: warning: suggest explicit braces to avoid ambiguous ‘else’
clientlist.cpp: In member function ‘void Client::SendNotification(int, std::string, std::string, int)’:
clientlist.cpp:2197: warning: format not a string literal and no format arguments
clientlist.cpp:2198: warning: format not a string literal and no format arguments
clientlist.cpp:2200: warning: format not a string literal and no format arguments
clientlist.cpp:2201: warning: format not a string literal and no format arguments
clientlist.cpp: In member function ‘void Client::SendFriends()’:
clientlist.cpp:2251: warning: format not a string literal and no format arguments
clientlist.cpp:2274: warning: format not a string literal and no format arguments
make[1]: *** [clientlist.o] Error 1
Reply With Quote
  #10  
Old 06-08-2009, 03:22 PM
gaeorn
Developer
 
Join Date: Apr 2009
Location: USA
Posts: 478
Default

Well, this is the location I put the include:

Code:
Index: ucs/clientlist.cpp
===================================================================
--- ucs/clientlist.cpp  (revision 642)
+++ ucs/clientlist.cpp  (working copy)
@@ -31,6 +31,7 @@
 #include "../common/EmuTCPServer.h"
 #include <list>
 #include <vector>
+#include <algorithm>
 #include <string>
 #include <cstdlib>
That eliminated the compile errors for me. Perhaps you should look at your c++ library information to see what other includes may be needed. That's how I found the solution that worked for me.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 12:46 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3