libbb: fix sha1 on !x86 if CONFIG_SHA1_HWACCEL=y
fixes non i386 and x86 builds libbb/hash_md5_sha.c: In function 'sha1_end': libbb/hash_md5_sha.c:1316:35: error: 'sha1_process_block64_shaNI' undeclared 1316 | || ctx->process_block == sha1_process_block64_shaNI Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
dff444bc37
commit
bf57f732a5
1 changed files with 2 additions and 0 deletions
|
@ -1313,7 +1313,9 @@ unsigned FAST_FUNC sha1_end(sha1_ctx_t *ctx, void *resbuf)
|
||||||
hash_size = 8;
|
hash_size = 8;
|
||||||
if (ctx->process_block == sha1_process_block64
|
if (ctx->process_block == sha1_process_block64
|
||||||
#if ENABLE_SHA1_HWACCEL
|
#if ENABLE_SHA1_HWACCEL
|
||||||
|
# if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
|
||||||
|| ctx->process_block == sha1_process_block64_shaNI
|
|| ctx->process_block == sha1_process_block64_shaNI
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
) {
|
) {
|
||||||
hash_size = 5;
|
hash_size = 5;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue