From 9c685415abe0f8fed6f7c528c0f0134121193c9d Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Sun, 7 Dec 2014 17:42:37 -0600 Subject: disable inline assembly on Windows for now There are issues building with inline assembly on Windows 64-bit. --- crypto/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crypto/Makefile.am b/crypto/Makefile.am index 91c58db..171d662 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am @@ -14,6 +14,10 @@ libcrypto_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) libcrypto_la_CFLAGS += -DOPENSSL_NO_HW_PADLOCK if OPENSSL_NO_ASM libcrypto_la_CFLAGS += -DOPENSSL_NO_ASM +else +if HOST_WIN +libcrypto_la_CFLAGS += -DOPENSSL_NO_ASM +endif endif noinst_LTLIBRARIES = libcompat.la libcompatnoopt.la -- cgit v1.2.3-55-g6feb