aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2014-12-07 17:42:37 -0600
committerBrent Cook <bcook@openbsd.org>2014-12-07 18:02:06 -0600
commit9c685415abe0f8fed6f7c528c0f0134121193c9d (patch)
treea368e1e2d10d752bd63079486cabbcc1619698fb /crypto
parent03cd45e2c78b0298ab006fb64a4cda4fe6ab5657 (diff)
downloadportable-9c685415abe0f8fed6f7c528c0f0134121193c9d.tar.gz
portable-9c685415abe0f8fed6f7c528c0f0134121193c9d.tar.bz2
portable-9c685415abe0f8fed6f7c528c0f0134121193c9d.zip
disable inline assembly on Windows for now
There are issues building with inline assembly on Windows 64-bit.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/Makefile.am4
1 files changed, 4 insertions, 0 deletions
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)
14libcrypto_la_CFLAGS += -DOPENSSL_NO_HW_PADLOCK 14libcrypto_la_CFLAGS += -DOPENSSL_NO_HW_PADLOCK
15if OPENSSL_NO_ASM 15if OPENSSL_NO_ASM
16libcrypto_la_CFLAGS += -DOPENSSL_NO_ASM 16libcrypto_la_CFLAGS += -DOPENSSL_NO_ASM
17else
18if HOST_WIN
19libcrypto_la_CFLAGS += -DOPENSSL_NO_ASM
20endif
17endif 21endif
18 22
19noinst_LTLIBRARIES = libcompat.la libcompatnoopt.la 23noinst_LTLIBRARIES = libcompat.la libcompatnoopt.la