View Single Post
  #338  
Old 07-23-2012, 09:28 AM
sorvani
Dragon
 
Join Date: May 2010
Posts: 965
Default

here are the errors and without spending some time looking I do not know what the cause is off the top of my head.
Code:
4>packet_functions.obj : error LNK2019: unresolved external symbol _deflateEnd referenced in function "int __cdecl DeflatePacket(unsigned char const *,int,unsigned char *,int)" (?DeflatePacket@@YAHPBEHPAEH@Z)
4>packet_functions.obj : error LNK2019: unresolved external symbol _deflate referenced in function "int __cdecl DeflatePacket(unsigned char const *,int,unsigned char *,int)" (?DeflatePacket@@YAHPBEHPAEH@Z)
4>packet_functions.obj : error LNK2019: unresolved external symbol _deflateInit_ referenced in function "int __cdecl DeflatePacket(unsigned char const *,int,unsigned char *,int)" (?DeflatePacket@@YAHPBEHPAEH@Z)
4>packet_functions.obj : error LNK2019: unresolved external symbol _inflateEnd referenced in function "unsigned int __cdecl InflatePacket(unsigned char const *,unsigned int,unsigned char *,unsigned int,bool)" (?InflatePacket@@YAIPBEIPAEI_N@Z)
4>packet_functions.obj : error LNK2019: unresolved external symbol _inflate referenced in function "unsigned int __cdecl InflatePacket(unsigned char const *,unsigned int,unsigned char *,unsigned int,bool)" (?InflatePacket@@YAIPBEIPAEI_N@Z)
4>packet_functions.obj : error LNK2019: unresolved external symbol _inflateInit2_ referenced in function "unsigned int __cdecl InflatePacket(unsigned char const *,unsigned int,unsigned char *,unsigned int,bool)" (?InflatePacket@@YAIPBEIPAEI_N@Z)
4>.\..\Build\eqlaunch.exe : fatal error LNK1120: 6 unresolved externals
4>
4>Build FAILED.
4>
4>Time Elapsed 00:00:15.06
but also what version of visual studio are you using? If it is 2010, are you sure you updated the references for each project?

also, you have somehow mixed up the build types even if you do get it all built you are likely to have problems. You have some projects set to releasebots. some are just release and query serve (which you skipped and should not be) is release x64

Code:
3>------ Build started: Project: Zone, Configuration: ReleaseBots Win32 ------
3>Build started 7/22/2012 10:57:30 PM.
4>------ Build started: Project: eqlaunch, Configuration: Release Win32 ------
4>Build started 7/22/2012 11:00:57 PM.
5>------ Build started: Project: ucs, Configuration: Release Win32 ------
6>------ Skipped Build: Project: queryserv, Configuration: Release x64 ------
6>Project not selected to build for this solution configuration 
5>Build started 7/22/2012 11:01:12 PM.
Reply With Quote