|
If you get the following error:
In file included from ../../lib/gnutls_int.h:112,
from opencdk.h:30,
from armor.c:37:
../../lib/gnutls_mpi.h:29:23: error: libtasn1.h: No such file or directory
In file included from ../../lib/gnutls_cert.h:30,
from ../../lib/gnutls_int.h:238,
from opencdk.h:30,
from armor.c:37:
-snip-
In file included from ../../lib/gnutls_cert.h:30,
from ../../lib/gnutls_int.h:238,
from opencdk.h:30,
from armor.c:37:
../../lib/x509/x509_int.h:261: error: expected specifier-qualifier-list before ASN1_TYPE
../../lib/x509/x509_int.h:319: error: expected declaration specifiers or ... before ASN1_TYPE
make[3]: *** [armor.lo] Error 1
You will need to edit the following two files:
lib/gnutls_mpi.h
lib/gnutls_cert.h
Change the line "#include >libtasn1.h<" to
#include "../../lib/minitasn1/libtasn1.h" by marc at 2009-01-15 22:17:52
|