From 04653dabc8dff8c85d75ccab57749e0af91a03cb Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 20 Jun 2020 07:59:26 -0700 Subject: [PATCH] Exclude the asm code when it's not being used. --- lib/md5-asm-x86_64.s | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/md5-asm-x86_64.s b/lib/md5-asm-x86_64.s index 44aa386d..29e2cc82 100644 --- a/lib/md5-asm-x86_64.s +++ b/lib/md5-asm-x86_64.s @@ -24,6 +24,10 @@ * show any significant difference in performance, though. */ +#include "config.h" + +#ifndef USE_OPENSSL + .text .align 16 @@ -700,3 +704,5 @@ _md5_process_asm: #else L_md5_process_asm_end: #endif + +#endif /* !USE_OPENSSL */ -- 2.47.2