View Single Post
  #1  
Old 02-02-2020, 02:52 PM
laxative
Hill Giant
 
Join Date: Aug 2008
Location: NorthEast
Posts: 115
Default compile error unresolved externals

Greetings

Thought I'd pick up the project again for a little while.
Did the ground up approach because there are some code changes I like to have active.

Im stuck on compiling, I get 17 to go, 6 fail. They fail with externals in common.lib.. not sure what's going on.

Completely new data pull using the ground up server install (which now has no reference to zlib.. which may be what I'm missing?)
VS2019, MYSQL, PERL, Dependencies etc... Cmake runs great no errors.

compile fails here:

Code:
1>------ Build started: Project: queryserv, Configuration: RelWithDebInfo x64 ------
1>common.lib(servertalk_client_connection.obj) : error LNK2019: unresolved external symbol __imp_crypto_box_keypair referenced in function "private: void __cdecl EQ::Net::ServertalkClient::SendHandshake(bool)" (?SendHandshake@ServertalkClient@Net@EQ@@AEAAX_N@Z)
1>common.lib(servertalk_client_connection.obj) : error LNK2019: unresolved external symbol __imp_crypto_box_beforenm referenced in function "private: void __cdecl EQ::Net::ServertalkClient::SendHandshake(bool)" (?SendHandshake@ServertalkClient@Net@EQ@@AEAAX_N@Z)
1>common.lib(servertalk_client_connection.obj) : error LNK2019: unresolved external symbol __imp_crypto_box_easy_afternm referenced in function "public: void __cdecl EQ::Net::ServertalkClient::Send(unsigned short,class EQ::Net::Packet &)" (?Send@ServertalkClient@Net@EQ@@QEAAXGAEAVPacket@23@@Z)
1>common.lib(servertalk_client_connection.obj) : error LNK2019: unresolved external symbol __imp_crypto_box_open_easy_afternm referenced in function "private: void __cdecl EQ::Net::ServertalkClient::ProcessMessage(class EQ::Net::Packet &)" (?ProcessMessage@ServertalkClient@Net@EQ@@AEAAXAEAVPacket@23@@Z)
1>common.lib(servertalk_client_connection.obj) : error LNK2019: unresolved external symbol
thoughts?
Lax
Reply With Quote