View Single Post
  #6  
Old 01-20-2012, 04:26 PM
nosfentora
Discordant
 
Join Date: Oct 2004
Location: In a house
Posts: 387
Default

Think I'm having the same problem. Been a few months since I last pulled and compiled. Had kept VS2008 on just to compile EQEmu, but have now switched completely to 2010.

Specs:
Machine running EQEmu
Server 2008, SP2
MySQL 5.5.19 CE x32
Perl 5.14 x32

Machine Compiling EQEmu
Win 7 Ult x64
MySQL is NOT installed on this machine
Perl is NOT installed on this machine

Building ReleaseBots Win32

Clean pull of EQEmu Rev 2097 (last rev i had was 1600 or so)

New dependancy folder containing only:
MySQL include and lib folders copied from MySQL 5.5.19
Perl lib\CORE folder copied from Perl 5.14
ZLib 1.2.5 from https://sourceforge.net/projects/libpng/files/zlib/1.2.5/zlib125-dll.zip/download

Have set all the VC++ Directories to the appropriate paths per this post
http://www.eqemulator.org/forums/showthread.php?t=32980

Compiling throws the following errors:

Code:
Error    27    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)    \eqlaunch\packet_functions.obj    eqlaunch
Error    25    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)    \eqlaunch\packet_functions.obj    eqlaunch
Error    26    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)    \eqlaunch\packet_functions.obj    eqlaunch
Error    24    error LNK2019: unresolved external symbol _deflateInit_ referenced in function "int __cdecl DeflatePacket(unsigned char const *,int,unsigned char *,int)" (?DeflatePacket@@YAHPBEHPAEH@Z)    \eqlaunch\packet_functions.obj    eqlaunch
Error    22    error LNK2019: unresolved external symbol _deflateEnd referenced in function "int __cdecl DeflatePacket(unsigned char const *,int,unsigned char *,int)" (?DeflatePacket@@YAHPBEHPAEH@Z)    \eqlaunch\packet_functions.obj    eqlaunch
Error    23    error LNK2019: unresolved external symbol _deflate referenced in function "int __cdecl DeflatePacket(unsigned char const *,int,unsigned char *,int)" (?DeflatePacket@@YAHPBEHPAEH@Z)    \eqlaunch\packet_functions.obj    eqlaunch
Error    28    error LNK1120: 6 unresolved externals    \Build\eqlaunch.exe    eqlaunch
The only thing I can think of is it has to do with ZLIB, but can't figure out what, I'm not a c++ person.

Any idea what i missed?
Reply With Quote