diff options
author | Brent Cook <bcook@openbsd.org> | 2015-03-22 06:18:18 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-03-22 07:43:55 -0500 |
commit | ad2a38ab4ae5d542206527dfa59a333352ea99ce (patch) | |
tree | 0d37160a7b7d2c56872bdcaa5a9ec000d8845c3e /crypto/Makefile.am.elf-x86_64 | |
parent | 809fcf4ea75bd8609b608750ff301f363c18d92e (diff) | |
download | portable-ad2a38ab4ae5d542206527dfa59a333352ea99ce.tar.gz portable-ad2a38ab4ae5d542206527dfa59a333352ea99ce.tar.bz2 portable-ad2a38ab4ae5d542206527dfa59a333352ea99ce.zip |
rework CFLAGS/CPPFLAGS settings during configuration
Move define adjustments to CPPFLAGS.
Adjust user CFLAGS directly, do not override during configuration.
USER_CFLAGS is not necessary to build libcompat_noopt correctly.
Diffstat (limited to 'crypto/Makefile.am.elf-x86_64')
-rw-r--r-- | crypto/Makefile.am.elf-x86_64 | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/crypto/Makefile.am.elf-x86_64 b/crypto/Makefile.am.elf-x86_64 index 6257c40..44e08a1 100644 --- a/crypto/Makefile.am.elf-x86_64 +++ b/crypto/Makefile.am.elf-x86_64 | |||
@@ -22,20 +22,20 @@ ASM_X86_64_ELF += cpuid-elf-x86_64.S | |||
22 | EXTRA_DIST += $(ASM_X86_64_ELF) | 22 | EXTRA_DIST += $(ASM_X86_64_ELF) |
23 | 23 | ||
24 | if HOST_ASM_ELF_X86_64 | 24 | if HOST_ASM_ELF_X86_64 |
25 | libcrypto_la_CFLAGS += -DAES_ASM | 25 | libcrypto_la_CPPFLAGS += -DAES_ASM |
26 | libcrypto_la_CFLAGS += -DBSAES_ASM | 26 | libcrypto_la_CPPFLAGS += -DBSAES_ASM |
27 | libcrypto_la_CFLAGS += -DVPAES_ASM | 27 | libcrypto_la_CPPFLAGS += -DVPAES_ASM |
28 | libcrypto_la_CFLAGS += -DOPENSSL_IA32_SSE2 | 28 | libcrypto_la_CPPFLAGS += -DOPENSSL_IA32_SSE2 |
29 | libcrypto_la_CFLAGS += -DOPENSSL_BN_ASM_MONT | 29 | libcrypto_la_CPPFLAGS += -DOPENSSL_BN_ASM_MONT |
30 | libcrypto_la_CFLAGS += -DOPENSSL_BN_ASM_MONT5 | 30 | libcrypto_la_CPPFLAGS += -DOPENSSL_BN_ASM_MONT5 |
31 | libcrypto_la_CFLAGS += -DOPENSSL_BN_ASM_GF2m | 31 | libcrypto_la_CPPFLAGS += -DOPENSSL_BN_ASM_GF2m |
32 | libcrypto_la_CFLAGS += -DMD5_ASM | 32 | libcrypto_la_CPPFLAGS += -DMD5_ASM |
33 | libcrypto_la_CFLAGS += -DGHASH_ASM | 33 | libcrypto_la_CPPFLAGS += -DGHASH_ASM |
34 | libcrypto_la_CFLAGS += -DRSA_ASM | 34 | libcrypto_la_CPPFLAGS += -DRSA_ASM |
35 | libcrypto_la_CFLAGS += -DSHA1_ASM | 35 | libcrypto_la_CPPFLAGS += -DSHA1_ASM |
36 | libcrypto_la_CFLAGS += -DSHA256_ASM | 36 | libcrypto_la_CPPFLAGS += -DSHA256_ASM |
37 | libcrypto_la_CFLAGS += -DSHA512_ASM | 37 | libcrypto_la_CPPFLAGS += -DSHA512_ASM |
38 | libcrypto_la_CFLAGS += -DWHIRLPOOL_ASM | 38 | libcrypto_la_CPPFLAGS += -DWHIRLPOOL_ASM |
39 | libcrypto_la_CFLAGS += -DOPENSSL_CPUID_OBJ | 39 | libcrypto_la_CPPFLAGS += -DOPENSSL_CPUID_OBJ |
40 | libcrypto_la_SOURCES += $(ASM_X86_64_ELF) | 40 | libcrypto_la_SOURCES += $(ASM_X86_64_ELF) |
41 | endif | 41 | endif |