genode/repos/libports/src/lib/libgcrypt/config.h
Norman Feske 5b6bd8459f Signature checking tool based on GnuPG
The new 'verify' component facilitates the code of GnuPG to verify
detached OpenPGP signatures against public keys.

Since GnuPG depends on libgcrypt and libgpg-error, the patch adds these
libraries to the libports repository.

Fixes #2640
2018-02-09 13:34:13 +01:00

22 lines
487 B
C

#define _GCRYPT_CONFIG_H_INCLUDED 1
#define HAVE_STDINT_H 1
#define HAVE_CLOCK_GETTIME 1
#define HAVE_GETPID 1
#define HAVE_CLOCK 1
#ifdef __LP64__
#define SIZEOF_UNSIGNED_SHORT 2
#define SIZEOF_UNSIGNED_INT 4
#define SIZEOF_UNSIGNED_LONG 8
#else
#define SIZEOF_UNSIGNED_SHORT 2
#define SIZEOF_UNSIGNED_INT 4
#define SIZEOF_UNSIGNED_LONG 4
#define SIZEOF_UNSIGNED_LONG_LONG 8
#endif
#define USE_SHA1 1
#define USE_SHA256 1
#define USE_RSA 1