diff options
author | Wayne Davison <wayne@opencoder.net> | 2020-06-23 15:47:27 -0700 |
---|---|---|
committer | Wayne Davison <wayne@opencoder.net> | 2020-06-23 15:47:27 -0700 |
commit | e93f40d8b4068a0170ec0d8a6d6ab74850ba358f (patch) | |
tree | a2dff84ec7b3c99ec1fee44ae39585a88425e1c8 /lib | |
parent | 4df1b1d4fe213d4409d5fad962f831837a4c7e23 (diff) | |
download | rsync-e93f40d8b4068a0170ec0d8a6d6ab74850ba358f.tar.gz |
Apple needs a leading underscore.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/md5-asm-x86_64.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/md5-asm-x86_64.S b/lib/md5-asm-x86_64.S index 814aac59..383f193a 100644 --- a/lib/md5-asm-x86_64.S +++ b/lib/md5-asm-x86_64.S @@ -29,6 +29,10 @@ #if !defined USE_OPENSSL && CSUM_CHUNK == 64 +#ifdef __APPLE__ +#define md5_process_asm _md5_process_asm +#endif + .text .align 16 |