I'm try to compile a code write in Vala using a .vapi of libgcrypt. I installed the library in the system and i run a test in c. The code write in C compiles without errors: I typed the following command to compile the C code:
gcc -o main main.c -l gcrypt
The code runs perfectly.
But, the following code write in Vala don't compile using the command:
valac --pkg gcrypt --Xcc=-lgcrypt main.vala
The main.vala is
using GCrypt;
public static int main(string[] args)
{
Hash h;
Hash.open(out h, Hash.Algorithm.MD5, Hash.Flag.SECURE);
return 0;
}
I don't know what i doing wrong.
EDITED: Sorry for not post the error, but there is:
Loaded package /usr/share/vala-0.30/vapi/glib-2.0.vapi'
Loaded package /usr/share/vala-0.30/vapi/gobject-2.0.vapi'
Loaded package /usr/share/vala-0.30/vapi/gcrypt.vapi'
cc -o '/home/kyul/Documents/Codes/Vala/test_gcrypt/main' '/home/kyul/Documents/Codes/Vala/test_gcrypt/main.vala.c' -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -lgobject-2.0 -lglib-2.0 '-lgcrypt'
/home/kyul/Documents/Codes/Vala/test_gcrypt/main.vala.c: In function ‘_vala_main’:
/home/kyul/Documents/Codes/Vala/test_gcrypt/main.vala.c:22:38: error: ‘GCRY_MD_FLAGSECURE’ undeclared (first use in this function)
gcry_md_open (&_tmp0_, GCRY_MD_MD5, GCRY_MD_FLAGSECURE);
^
/home/kyul/Documents/Codes/Vala/test_gcrypt/main.vala.c:22:38: note: each undeclared identifier is reported only once for each function it appears in
error: cc exited with status 256
Compilation failed: 1 error(s), 0 warning(s)
Most likely You are missing the
.vapi
file.I've never used gcrypt api from vala before and had to patch
gcrypt.vapi
for Your example to work, but the patch is trivial:Update: concerning Your cipher errors, obviously the
Cipher
class is missingfree_function
mapping: