diff options
author | Brent Cook <bcook@openbsd.org> | 2014-12-07 17:42:37 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-12-07 18:02:06 -0600 |
commit | 9c685415abe0f8fed6f7c528c0f0134121193c9d (patch) | |
tree | a368e1e2d10d752bd63079486cabbcc1619698fb /crypto | |
parent | 03cd45e2c78b0298ab006fb64a4cda4fe6ab5657 (diff) | |
download | portable-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.am | 4 |
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) | |||
14 | libcrypto_la_CFLAGS += -DOPENSSL_NO_HW_PADLOCK | 14 | libcrypto_la_CFLAGS += -DOPENSSL_NO_HW_PADLOCK |
15 | if OPENSSL_NO_ASM | 15 | if OPENSSL_NO_ASM |
16 | libcrypto_la_CFLAGS += -DOPENSSL_NO_ASM | 16 | libcrypto_la_CFLAGS += -DOPENSSL_NO_ASM |
17 | else | ||
18 | if HOST_WIN | ||
19 | libcrypto_la_CFLAGS += -DOPENSSL_NO_ASM | ||
20 | endif | ||
17 | endif | 21 | endif |
18 | 22 | ||
19 | noinst_LTLIBRARIES = libcompat.la libcompatnoopt.la | 23 | noinst_LTLIBRARIES = libcompat.la libcompatnoopt.la |