OLD | NEW |
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 979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
990 OPENSSL_PATCHES="\ | 990 OPENSSL_PATCHES="\ |
991 progs.patch \ | 991 progs.patch \ |
992 handshake_cutthrough.patch \ | 992 handshake_cutthrough.patch \ |
993 jsse.patch \ | 993 jsse.patch \ |
994 channelid.patch \ | 994 channelid.patch \ |
995 channelidchromium.patch \ | 995 channelidchromium.patch \ |
996 eng_dyn_dirs.patch \ | 996 eng_dyn_dirs.patch \ |
997 fix_clang_build.patch \ | 997 fix_clang_build.patch \ |
998 x509_hash_name_algorithm_change.patch \ | 998 x509_hash_name_algorithm_change.patch \ |
999 reduce_client_hello_size.patch \ | 999 reduce_client_hello_size.patch \ |
| 1000 fix_lhash_iteration.patch \ |
1000 " | 1001 " |
1001 | 1002 |
1002 OPENSSL_PATCHES_progs_SOURCES="\ | 1003 OPENSSL_PATCHES_progs_SOURCES="\ |
1003 apps/openssl.c \ | 1004 apps/openssl.c \ |
1004 apps/progs.h \ | 1005 apps/progs.h \ |
1005 apps/speed.c \ | 1006 apps/speed.c \ |
1006 crypto/ui/ui_openssl.c \ | 1007 crypto/ui/ui_openssl.c \ |
1007 " | 1008 " |
1008 | 1009 |
1009 OPENSSL_PATCHES_handshake_cutthrough_SOURCES="\ | 1010 OPENSSL_PATCHES_handshake_cutthrough_SOURCES="\ |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1053 crypto/x509v3/v3_utl.c \ | 1054 crypto/x509v3/v3_utl.c \ |
1054 " | 1055 " |
1055 | 1056 |
1056 OPENSSL_PATCHES_x509_hash_name_algorithm_change_SOURCES="\ | 1057 OPENSSL_PATCHES_x509_hash_name_algorithm_change_SOURCES="\ |
1057 crypto/x509/by_dir.c \ | 1058 crypto/x509/by_dir.c \ |
1058 " | 1059 " |
1059 | 1060 |
1060 OPENSSL_PATCHES_reduce_client_hello_size_SOURCES="\ | 1061 OPENSSL_PATCHES_reduce_client_hello_size_SOURCES="\ |
1061 ssl/t1_lib.c \ | 1062 ssl/t1_lib.c \ |
1062 " | 1063 " |
| 1064 |
| 1065 OPENSSL_PATCHES_fix_lhash_iteration_SOURCES="\ |
| 1066 crypto/conf/conf_api.c |
| 1067 crypto/lhash/lhash.c |
| 1068 crypto/lhash/lhash.h |
| 1069 crypto/objects/o_names.c |
| 1070 crypto/objects/obj_dat.c |
| 1071 include/openssl/lhash.h |
| 1072 ssl/ssl_sess.c |
| 1073 " |
OLD | NEW |