From: Wayne Davison Date: Sat, 20 Jun 2020 14:59:26 +0000 (-0700) Subject: Exclude the asm code when it's not being used. X-Git-Tag: v3.2.1pre1~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=04653dabc8dff8c85d75ccab57749e0af91a03cb;p=thirdparty%2Frsync.git Exclude the asm code when it's not being used. --- 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 */