1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-14 21:47:19 +02:00

* Makefile.am, md.c (load_digest_module): Only build in SHA384/512 and

TIGER if specifically enabled by the 64-bit type check in configure.
This commit is contained in:
David Shaw 2003-02-12 04:51:22 +00:00
parent 911cc7e6ab
commit fa9600d2c8
3 changed files with 14 additions and 6 deletions

View file

@ -96,12 +96,16 @@ load_digest_module (void)
/* We load them in reverse order so that the most
frequently used are the first in the list. */
#ifdef USE_TIGER
if (!new_list_item (DIGEST_ALGO_TIGER, tiger_get_info))
BUG();
#endif
#ifdef USE_SHA512
if (!new_list_item (DIGEST_ALGO_SHA512, sha512_get_info))
BUG ();
if (!new_list_item (DIGEST_ALGO_SHA384, sha384_get_info))
BUG ();
#endif
if (!new_list_item (DIGEST_ALGO_SHA256, sha256_get_info))
BUG ();
if (!new_list_item (DIGEST_ALGO_MD5, md5_get_info))