Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(535)

Side by Side Diff: openssl/openssl.config

Issue 231353003: Adds support for compiling OpenSSL on mac. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « openssl/import_openssl.sh ('k') | openssl/patches/mac_ia32_assembly.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 CONFIGURE_ARGS="\ 1 CONFIGURE_ARGS="\
2 -DL_ENDIAN \ 2 -DL_ENDIAN \
3 linux-generic32 \ 3 linux-generic32 \
4 no-camellia \ 4 no-camellia \
5 no-capieng \ 5 no-capieng \
6 no-cast \ 6 no-cast \
7 no-cms \ 7 no-cms \
8 no-gost \ 8 no-gost \
9 no-gmp \ 9 no-gmp \
10 no-heartbeats \ 10 no-heartbeats \
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 SHA1_ASM \ 263 SHA1_ASM \
264 SHA256_ASM \ 264 SHA256_ASM \
265 SHA512_ASM \ 265 SHA512_ASM \
266 MD5_ASM \ 266 MD5_ASM \
267 DES_PTR \ 267 DES_PTR \
268 DES_RISC1 \ 268 DES_RISC1 \
269 DES_UNROLL \ 269 DES_UNROLL \
270 OPENSSL_CPUID_OBJ \ 270 OPENSSL_CPUID_OBJ \
271 " 271 "
272 272
273 OPENSSL_CRYPTO_DEFINES_mac_ia32="\
274 OPENSSL_BN_ASM_GF2m \
275 OPENSSL_BN_ASM_MONT \
276 OPENSSL_BN_ASM_PART_WORDS \
277 AES_ASM \
278 GHASH_ASM \
279 SHA1_ASM \
280 SHA256_ASM \
281 SHA512_ASM \
282 MD5_ASM \
283 DES_PTR \
284 DES_RISC1 \
285 DES_UNROLL \
286 OPENSSL_CPUID_OBJ \
287 "
288
273 OPENSSL_CRYPTO_INCLUDES="\ 289 OPENSSL_CRYPTO_INCLUDES="\
274 . \ 290 . \
275 include \ 291 include \
276 crypto \ 292 crypto \
277 crypto/asn1 \ 293 crypto/asn1 \
278 crypto/evp \ 294 crypto/evp \
279 crypto/modes \ 295 crypto/modes \
280 include \ 296 include \
281 include/openssl \ 297 include/openssl \
282 " 298 "
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 OPENSSL_CRYPTO_SOURCES_EXCLUDES_x86="\ 857 OPENSSL_CRYPTO_SOURCES_EXCLUDES_x86="\
842 crypto/aes/aes_core.c \ 858 crypto/aes/aes_core.c \
843 crypto/aes/aes_cbc.c \ 859 crypto/aes/aes_cbc.c \
844 crypto/bf/bf_enc.c \ 860 crypto/bf/bf_enc.c \
845 crypto/bn/bn_asm.c \ 861 crypto/bn/bn_asm.c \
846 crypto/des/des_enc.c \ 862 crypto/des/des_enc.c \
847 crypto/des/fcrypt_b.c \ 863 crypto/des/fcrypt_b.c \
848 crypto/mem_clr.c \ 864 crypto/mem_clr.c \
849 " 865 "
850 866
867 OPENSSL_CRYPTO_SOURCES_mac_ia32="\
868 crypto/aes/asm/aes-586-mac.S \
869 crypto/aes/asm/aesni-x86-mac.S \
870 crypto/aes/asm/vpaes-x86-mac.S \
871 crypto/bf/asm/bf-586-mac.S \
872 crypto/bn/asm/bn-586-mac.S \
873 crypto/bn/asm/co-586-mac.S \
874 crypto/bn/asm/x86-gf2m-mac.S \
875 crypto/bn/asm/x86-mont-mac.S \
876 crypto/des/asm/crypt586-mac.S \
877 crypto/des/asm/des-586-mac.S \
878 crypto/md5/asm/md5-586-mac.S \
879 crypto/modes/asm/ghash-x86-mac.S \
880 crypto/sha/asm/sha1-586-mac.S \
881 crypto/sha/asm/sha256-586-mac.S \
882 crypto/sha/asm/sha512-586-mac.S \
883 crypto/x86cpuid-mac.S \
884 "
885
886 OPENSSL_CRYPTO_SOURCES_EXCLUDES_mac_ia32="\
887 crypto/aes/aes_core.c \
888 crypto/aes/aes_cbc.c \
889 crypto/bf/bf_enc.c \
890 crypto/bn/bn_asm.c \
891 crypto/des/des_enc.c \
892 crypto/des/fcrypt_b.c \
893 crypto/mem_clr.c \
894 "
895
851 OPENSSL_CRYPTO_SOURCES_x86_64="\ 896 OPENSSL_CRYPTO_SOURCES_x86_64="\
852 crypto/aes/asm/aes-x86_64.S \ 897 crypto/aes/asm/aes-x86_64.S \
853 crypto/aes/asm/aesni-x86_64.S \ 898 crypto/aes/asm/aesni-x86_64.S \
854 crypto/aes/asm/aesni-sha1-x86_64.S \ 899 crypto/aes/asm/aesni-sha1-x86_64.S \
855 crypto/aes/asm/bsaes-x86_64.S \ 900 crypto/aes/asm/bsaes-x86_64.S \
856 crypto/aes/asm/vpaes-x86_64.S \ 901 crypto/aes/asm/vpaes-x86_64.S \
857 crypto/bn/asm/modexp512-x86_64.S \ 902 crypto/bn/asm/modexp512-x86_64.S \
858 crypto/bn/asm/x86_64-gcc.c \ 903 crypto/bn/asm/x86_64-gcc.c \
859 crypto/bn/asm/x86_64-gf2m.S \ 904 crypto/bn/asm/x86_64-gf2m.S \
860 crypto/bn/asm/x86_64-mont.S \ 905 crypto/bn/asm/x86_64-mont.S \
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
1009 x509_hash_name_algorithm_change.patch \ 1054 x509_hash_name_algorithm_change.patch \
1010 reduce_client_hello_size.patch \ 1055 reduce_client_hello_size.patch \
1011 fix_lhash_iteration.patch \ 1056 fix_lhash_iteration.patch \
1012 tls1_change_cipher_state_rewrite.patch \ 1057 tls1_change_cipher_state_rewrite.patch \
1013 aead_support.patch \ 1058 aead_support.patch \
1014 aead_ssl_support.patch \ 1059 aead_ssl_support.patch \
1015 use_aead_for_aes_gcm.patch \ 1060 use_aead_for_aes_gcm.patch \
1016 chacha20poly1305.patch \ 1061 chacha20poly1305.patch \
1017 neon_runtime.patch \ 1062 neon_runtime.patch \
1018 paddingext.patch \ 1063 paddingext.patch \
1064 mac_ia32_assembly.patch \
1019 " 1065 "
1020 1066
1021 OPENSSL_PATCHES_progs_SOURCES="\ 1067 OPENSSL_PATCHES_progs_SOURCES="\
1022 apps/openssl.c \ 1068 apps/openssl.c \
1023 apps/progs.h \ 1069 apps/progs.h \
1024 apps/speed.c \ 1070 apps/speed.c \
1025 crypto/ui/ui_openssl.c \ 1071 crypto/ui/ui_openssl.c \
1026 " 1072 "
1027 1073
1028 OPENSSL_PATCHES_handshake_cutthrough_SOURCES="\ 1074 OPENSSL_PATCHES_handshake_cutthrough_SOURCES="\
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
1082 1128
1083 OPENSSL_PATCHES_fix_lhash_iteration_SOURCES="\ 1129 OPENSSL_PATCHES_fix_lhash_iteration_SOURCES="\
1084 crypto/conf/conf_api.c 1130 crypto/conf/conf_api.c
1085 crypto/lhash/lhash.c 1131 crypto/lhash/lhash.c
1086 crypto/lhash/lhash.h 1132 crypto/lhash/lhash.h
1087 crypto/objects/o_names.c 1133 crypto/objects/o_names.c
1088 crypto/objects/obj_dat.c 1134 crypto/objects/obj_dat.c
1089 include/openssl/lhash.h 1135 include/openssl/lhash.h
1090 ssl/ssl_sess.c 1136 ssl/ssl_sess.c
1091 " 1137 "
1138
1139 OPENSSL_PATCHES_mac_ia32_assembly_SOURCES="\
1140 crypto/aes/asm/aes-586-mac.S \
1141 crypto/aes/asm/aesni-x86-mac.S \
1142 crypto/aes/asm/vpaes-x86-mac.S \
1143 crypto/bf/asm/bf-586-mac.S \
1144 crypto/bn/asm/bn-586-mac.S \
1145 crypto/bn/asm/co-586-mac.S \
1146 crypto/bn/asm/x86-gf2m-mac.S \
1147 crypto/bn/asm/x86-mont-mac.S \
1148 crypto/des/asm/crypt586-mac.S \
1149 crypto/des/asm/des-586-mac.S \
1150 crypto/md5/asm/md5-586-mac.S \
1151 crypto/modes/asm/ghash-x86-mac.S \
1152 crypto/sha/asm/sha1-586-mac.S \
1153 crypto/sha/asm/sha256-586-mac.S \
1154 crypto/sha/asm/sha512-586-mac.S \
1155 crypto/x86cpuid-mac.S \
1156 "
OLDNEW
« no previous file with comments | « openssl/import_openssl.sh ('k') | openssl/patches/mac_ia32_assembly.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698