Guys need help wit compille wallet
key.cpp: In member function bool CKey::Load(CPrivKey&, CPubKey&, bool):
key.cpp:568:61: error: class {anonymous}::CSecp256k1Init has no member named ctx
if (!secp256k1_ec_privkey_import(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &privkey[0], privkey.size()))
^
key.cpp: In member function bool CPubKey::VerifyCompact(const uint256&, const std::vector&) const:
key.cpp:632:10: warning: unused variable fComp [-Wunused-variable]
bool fComp = IsCompressed();
^
key.cpp: In member function bool CPubKey::IsFullyValid() const:
key.cpp:654:60: error: class {anonymous}::CSecp256k1Init has no member named ctx
if (!secp256k1_ec_pubkey_verify(instance_of_csecp256k1.ctx, begin(), size()))
^
key.cpp: In member function bool CPubKey::Decompress():
key.cpp:669:69: error: class {anonymous}::CSecp256k1Init has no member named ctx
int ret = secp256k1_ec_pubkey_decompress(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &clen);
^
key.cpp: In member function bool CKey::Derive(CKey&, unsigned char*, unsigned int, const unsigned char*) const:
key.cpp:711:70: error: class {anonymous}::CSecp256k1Init has no member named ctx
bool ret = secp256k1_ec_privkey_tweak_add(instance_of_csecp256k1.ctx, (unsigned char*)keyChild.begin(), out);
^
key.cpp: In member function bool CPubKey::Derive(CPubKey&, unsigned char*, unsigned int, const unsigned char*) const:
key.cpp:730:69: error: class {anonymous}::CSecp256k1Init has no member named ctx
bool ret = secp256k1_ec_pubkey_tweak_add(instance_of_csecp256k1.ctx, (unsigned char*)pubkeyChild.begin(), pubkeyChild.size(), out);
^
make: *** [obj/key.o] Error 1
https://github.com/bitcoin/secp256k1#build-steps 