commit 8be9a872bfe46baf48e76c939b4076da45f1109b
parent 5f164865f39bde8f9e7906e3711f2d6591f539e5
Author: Michael Savage <mikejsavage@gmail.com>
Date: Sat, 1 Apr 2017 10:33:10 +0300
Only include sha512.c on Linux
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.mess b/Makefile.mess
@@ -30,9 +30,9 @@ ifneq ($(uname),OpenBSD)
SRCS += compat/bcrypt/blowfish.c
SRCS += compat/arc4random/arc4random.c
SRCS += compat/strlcpy.c
- SRCS += compat/sha/sha512.c
ifeq ($(uname),Linux)
+ SRCS += compat/sha/sha512.c
SRCS += compat/getentropy/getentropy_linux.c
LDFLAGS += -lrt
endif