diff options
| author | djm <> | 2009-01-09 12:16:58 +0000 |
|---|---|---|
| committer | djm <> | 2009-01-09 12:16:58 +0000 |
| commit | 4e44f026fb3097b0f0c5c69d32f49ea214a4518f (patch) | |
| tree | 0d46a28fc47d821f39d825e8db6cc6c2ebf5592c /src | |
| parent | eef32868c6aa961f0ae29b5a113d0690dc4db25e (diff) | |
| download | openbsd-4e44f026fb3097b0f0c5c69d32f49ea214a4518f.tar.gz openbsd-4e44f026fb3097b0f0c5c69d32f49ea214a4518f.tar.bz2 openbsd-4e44f026fb3097b0f0c5c69d32f49ea214a4518f.zip | |
adjust Makefile and crank major for openssl-0.9.8j
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/libssl/crypto/Makefile | 27 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/alpha/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/amd64/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/arm/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/hppa/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/i386/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/m68k/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/m88k/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/mips64/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/powerpc/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/sh/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/sparc/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/sparc64/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/vax/opensslconf.h | 3 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/shlib_version | 2 | ||||
| -rw-r--r-- | src/lib/libssl/shlib_version | 2 | ||||
| -rw-r--r-- | src/lib/libssl/ssl/shlib_version | 2 |
17 files changed, 56 insertions, 16 deletions
diff --git a/src/lib/libssl/crypto/Makefile b/src/lib/libssl/crypto/Makefile index b1677cd664..364cdab83a 100644 --- a/src/lib/libssl/crypto/Makefile +++ b/src/lib/libssl/crypto/Makefile | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.50 2009/01/05 21:36:37 djm Exp $ | 1 | # $OpenBSD: Makefile,v 1.51 2009/01/09 12:16:52 djm Exp $ |
| 2 | 2 | ||
| 3 | LIB= crypto | 3 | LIB= crypto |
| 4 | WANTLINT= | 4 | WANTLINT= |
| @@ -46,8 +46,8 @@ CFLAGS+= -DOPENSSL_NO_HW_UBSEC | |||
| 46 | 46 | ||
| 47 | CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} | 47 | CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} |
| 48 | CFLAGS+= -I${LCRYPTO_SRC} | 48 | CFLAGS+= -I${LCRYPTO_SRC} |
| 49 | SRCS+= o_time.c o_dir.c | 49 | SRCS+= o_time.c o_dir.c o_init.c fips_err.c |
| 50 | SRCS+= cryptlib.c ex_data.c cpt_err.c mem.c mem_dbg.c mem_clr.c | 50 | SRCS+= cryptlib.c dyn_lck.c ex_data.c cpt_err.c mem.c mem_dbg.c mem_clr.c |
| 51 | SRCS+= tmdiff.c cversion.c uid.c | 51 | SRCS+= tmdiff.c cversion.c uid.c |
| 52 | SRCS+= md2_dgst.c md2_one.c | 52 | SRCS+= md2_dgst.c md2_one.c |
| 53 | SRCS+= md5_dgst.c md5_one.c | 53 | SRCS+= md5_dgst.c md5_one.c |
| @@ -62,7 +62,7 @@ SRCS+= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ | |||
| 62 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ | 62 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ |
| 63 | ofb64enc.c ofb_enc.c pcbc_enc.c \ | 63 | ofb64enc.c ofb_enc.c pcbc_enc.c \ |
| 64 | qud_cksm.c rand_key.c rpc_enc.c set_key.c \ | 64 | qud_cksm.c rand_key.c rpc_enc.c set_key.c \ |
| 65 | des_enc.c des_old2.c fcrypt_b.c \ | 65 | des_lib.c des_enc.c des_old2.c fcrypt_b.c \ |
| 66 | fcrypt.c xcbc_enc.c ede_cbcm_enc.c \ | 66 | fcrypt.c xcbc_enc.c ede_cbcm_enc.c \ |
| 67 | str2key.c cfb64ede.c ofb64ede.c \ | 67 | str2key.c cfb64ede.c ofb64ede.c \ |
| 68 | des_old.c read2pwd.c | 68 | des_old.c read2pwd.c |
| @@ -78,7 +78,7 @@ SRCS+= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_mul.c | |||
| 78 | SRCS+= bn_print.c bn_rand.c bn_shift.c | 78 | SRCS+= bn_print.c bn_rand.c bn_shift.c |
| 79 | SRCS+= bn_word.c bn_blind.c bn_gcd.c bn_prime.c bn_err.c | 79 | SRCS+= bn_word.c bn_blind.c bn_gcd.c bn_prime.c bn_err.c |
| 80 | SRCS+= bn_sqr.c bn_recp.c bn_mont.c bn_mpi.c bn_mod.c | 80 | SRCS+= bn_sqr.c bn_recp.c bn_mont.c bn_mpi.c bn_mod.c |
| 81 | SRCS+= bn_exp2.c bn_ctx.c | 81 | SRCS+= bn_exp2.c bn_ctx.c bn_opt.c |
| 82 | SRCS+= bn_sqrt.c bn_kron.c bn_x931p.c bn_const.c bn_depr.c bn_gf2m.c bn_nist.c | 82 | SRCS+= bn_sqrt.c bn_kron.c bn_x931p.c bn_const.c bn_depr.c bn_gf2m.c bn_nist.c |
| 83 | #SRCS+= camellia.c cmll_cbc.c cmll_cfb.c cmll_ctr.c | 83 | #SRCS+= camellia.c cmll_cbc.c cmll_cfb.c cmll_ctr.c |
| 84 | #SRCS+= cmll_ecb.c cmll_misc.c cmll_ofb.cq | 84 | #SRCS+= cmll_ecb.c cmll_misc.c cmll_ofb.cq |
| @@ -87,9 +87,9 @@ SRCS+= bn_sqrt.c bn_kron.c bn_x931p.c bn_const.c bn_depr.c bn_gf2m.c bn_nist.c | |||
| 87 | SRCS+= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c | 87 | SRCS+= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c |
| 88 | SRCS+= rsa_saos.c rsa_err.c rsa_pk1.c rsa_ssl.c | 88 | SRCS+= rsa_saos.c rsa_err.c rsa_pk1.c rsa_ssl.c |
| 89 | SRCS+= rsa_none.c rsa_chk.c rsa_oaep.c rsa_null.c rsa_asn1.c | 89 | SRCS+= rsa_none.c rsa_chk.c rsa_oaep.c rsa_null.c rsa_asn1.c |
| 90 | SRCS+= rsa_pss.c rsa_x931.c rsa_depr.c | 90 | SRCS+= rsa_pss.c rsa_x931.c rsa_x931g.c rsa_depr.c rsa_eng.c |
| 91 | SRCS+= dsa_gen.c dsa_key.c dsa_lib.c dsa_vrf.c | 91 | SRCS+= dsa_gen.c dsa_key.c dsa_lib.c dsa_vrf.c |
| 92 | SRCS+= dsa_sign.c dsa_err.c dsa_asn1.c dsa_ossl.c dsa_depr.c | 92 | SRCS+= dsa_sign.c dsa_err.c dsa_asn1.c dsa_ossl.c dsa_depr.c dsa_utl.c |
| 93 | SRCS+= dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c dh_asn1.c dh_depr.c | 93 | SRCS+= dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c dh_asn1.c dh_depr.c |
| 94 | SRCS+= ec_cvt.c ec_lib.c ecp_mont.c ecp_recp.c | 94 | SRCS+= ec_cvt.c ec_lib.c ecp_mont.c ecp_recp.c |
| 95 | SRCS+= ec_err.c ec_mult.c ecp_nist.c ecp_smpl.c | 95 | SRCS+= ec_err.c ec_mult.c ecp_nist.c ecp_smpl.c |
| @@ -97,7 +97,7 @@ SRCS+= ec2_mult.c ec2_smpl.c ec_asn1.c ec_check.c ec_curve.c | |||
| 97 | SRCS+= ec_key.c ec_print.c | 97 | SRCS+= ec_key.c ec_print.c |
| 98 | SRCS+= ech_err.c ech_key.c ech_lib.c ech_ossl.c | 98 | SRCS+= ech_err.c ech_key.c ech_lib.c ech_ossl.c |
| 99 | SRCS+= ecs_asn1.c ecs_err.c ecs_lib.c ecs_ossl.c ecs_sign.c ecs_vrf.c | 99 | SRCS+= ecs_asn1.c ecs_err.c ecs_lib.c ecs_ossl.c ecs_sign.c ecs_vrf.c |
| 100 | SRCS+= buffer.c buf_err.c | 100 | SRCS+= buffer.c buf_str.c buf_err.c |
| 101 | SRCS+= bio_lib.c bio_cb.c bio_err.c bss_mem.c | 101 | SRCS+= bio_lib.c bio_cb.c bio_err.c bss_mem.c |
| 102 | SRCS+= bss_null.c bss_fd.c bss_file.c bss_sock.c | 102 | SRCS+= bss_null.c bss_fd.c bss_file.c bss_sock.c |
| 103 | SRCS+= bss_conn.c bf_null.c bf_buff.c | 103 | SRCS+= bss_conn.c bf_null.c bf_buff.c |
| @@ -105,18 +105,19 @@ SRCS+= b_print.c b_dump.c b_sock.c bss_acpt.c | |||
| 105 | SRCS+= bf_nbio.c bss_bio.c bss_log.c bss_dgram.c | 105 | SRCS+= bf_nbio.c bss_bio.c bss_log.c bss_dgram.c |
| 106 | SRCS+= stack.c | 106 | SRCS+= stack.c |
| 107 | SRCS+= lhash.c lh_stats.c | 107 | SRCS+= lhash.c lh_stats.c |
| 108 | SRCS+= md_rand.c randfile.c rand_lib.c rand_egd.c rand_err.c rand_unix.c | 108 | SRCS+= md_rand.c randfile.c rand_lib.c rand_egd.c rand_eng.c |
| 109 | SRCS+= err.c err_all.c err_prn.c | 109 | SRCS+= rand_err.c rand_unix.c |
| 110 | SRCS+= err.c err_def.c err_all.c err_prn.c err_str.c err_bio.c | ||
| 110 | SRCS+= obj_dat.c obj_lib.c obj_err.c o_names.c | 111 | SRCS+= obj_dat.c obj_lib.c obj_err.c o_names.c |
| 111 | SRCS+= bio_b64.c e_bf.c m_sha.c p_open.c | 112 | SRCS+= bio_b64.c e_bf.c m_sha.c p_open.c |
| 112 | SRCS+= bio_enc.c e_cast.c e_xcbc_d.c m_dss.c m_sha1.c p_seal.c | 113 | SRCS+= bio_enc.c e_cast.c e_xcbc_d.c m_dss.c m_sha1.c p_seal.c |
| 113 | SRCS+= bio_md.c e_des.c encode.c m_dss1.c names.c p_sign.c | 114 | SRCS+= bio_md.c e_des.c encode.c m_dss1.c names.c p_sign.c |
| 114 | SRCS+= bio_ok.c e_des3.c evp_enc.c m_md2.c p_verify.c m_ecdsa.c | 115 | SRCS+= bio_ok.c e_des3.c dig_eng.c evp_enc.c m_md2.c p_verify.c m_ecdsa.c |
| 115 | #SRCS+= e_camellia.c e_seed.c | 116 | #SRCS+= e_camellia.c e_seed.c |
| 116 | SRCS+= c_all.c evp_err.c evp_acnf.c m_md4.c p5_crpt.c e_old.c | 117 | SRCS+= c_all.c evp_err.c evp_acnf.c evp_cnf.c m_md4.c p5_crpt.c e_old.c |
| 117 | SRCS+= c_allc.c evp_key.c m_md5.c p5_crpt2.c | 118 | SRCS+= c_allc.c evp_key.c m_md5.c p5_crpt2.c |
| 118 | SRCS+= c_alld.c e_null.c evp_lib.c p_dec.c | 119 | SRCS+= c_alld.c e_null.c evp_lib.c p_dec.c |
| 119 | SRCS+= digest.c e_rc2.c evp_pbe.c m_null.c p_enc.c | 120 | SRCS+= digest.c e_rc2.c enc_min.c evp_pbe.c m_null.c p_enc.c |
| 120 | SRCS+= e_acss.c e_aes.c e_rc4.c evp_pkey.c m_ripemd.c p_lib.c | 121 | SRCS+= e_acss.c e_aes.c e_rc4.c evp_pkey.c m_ripemd.c p_lib.c |
| 121 | SRCS+= md4_dgst.c md4_one.c | 122 | SRCS+= md4_dgst.c md4_one.c |
| 122 | SRCS+= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_pkey.c | 123 | SRCS+= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_pkey.c |
diff --git a/src/lib/libssl/crypto/arch/alpha/opensslconf.h b/src/lib/libssl/crypto/arch/alpha/opensslconf.h index 58b46616b5..ca34d461b8 100644 --- a/src/lib/libssl/crypto/arch/alpha/opensslconf.h +++ b/src/lib/libssl/crypto/arch/alpha/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/amd64/opensslconf.h b/src/lib/libssl/crypto/arch/amd64/opensslconf.h index b7c7908adf..d05bb8670f 100644 --- a/src/lib/libssl/crypto/arch/amd64/opensslconf.h +++ b/src/lib/libssl/crypto/arch/amd64/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/arm/opensslconf.h b/src/lib/libssl/crypto/arch/arm/opensslconf.h index ef50032293..7682683384 100644 --- a/src/lib/libssl/crypto/arch/arm/opensslconf.h +++ b/src/lib/libssl/crypto/arch/arm/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/hppa/opensslconf.h b/src/lib/libssl/crypto/arch/hppa/opensslconf.h index ef50032293..7682683384 100644 --- a/src/lib/libssl/crypto/arch/hppa/opensslconf.h +++ b/src/lib/libssl/crypto/arch/hppa/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/i386/opensslconf.h b/src/lib/libssl/crypto/arch/i386/opensslconf.h index b93cff97fc..63ee314704 100644 --- a/src/lib/libssl/crypto/arch/i386/opensslconf.h +++ b/src/lib/libssl/crypto/arch/i386/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/m68k/opensslconf.h b/src/lib/libssl/crypto/arch/m68k/opensslconf.h index ef50032293..7682683384 100644 --- a/src/lib/libssl/crypto/arch/m68k/opensslconf.h +++ b/src/lib/libssl/crypto/arch/m68k/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/m88k/opensslconf.h b/src/lib/libssl/crypto/arch/m88k/opensslconf.h index ef50032293..7682683384 100644 --- a/src/lib/libssl/crypto/arch/m88k/opensslconf.h +++ b/src/lib/libssl/crypto/arch/m88k/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/mips64/opensslconf.h b/src/lib/libssl/crypto/arch/mips64/opensslconf.h index 58b46616b5..ca34d461b8 100644 --- a/src/lib/libssl/crypto/arch/mips64/opensslconf.h +++ b/src/lib/libssl/crypto/arch/mips64/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/powerpc/opensslconf.h b/src/lib/libssl/crypto/arch/powerpc/opensslconf.h index ef50032293..7682683384 100644 --- a/src/lib/libssl/crypto/arch/powerpc/opensslconf.h +++ b/src/lib/libssl/crypto/arch/powerpc/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/sh/opensslconf.h b/src/lib/libssl/crypto/arch/sh/opensslconf.h index ef50032293..7682683384 100644 --- a/src/lib/libssl/crypto/arch/sh/opensslconf.h +++ b/src/lib/libssl/crypto/arch/sh/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/sparc/opensslconf.h b/src/lib/libssl/crypto/arch/sparc/opensslconf.h index ef50032293..7682683384 100644 --- a/src/lib/libssl/crypto/arch/sparc/opensslconf.h +++ b/src/lib/libssl/crypto/arch/sparc/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/sparc64/opensslconf.h b/src/lib/libssl/crypto/arch/sparc64/opensslconf.h index 58b46616b5..ca34d461b8 100644 --- a/src/lib/libssl/crypto/arch/sparc64/opensslconf.h +++ b/src/lib/libssl/crypto/arch/sparc64/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/arch/vax/opensslconf.h b/src/lib/libssl/crypto/arch/vax/opensslconf.h index ef50032293..7682683384 100644 --- a/src/lib/libssl/crypto/arch/vax/opensslconf.h +++ b/src/lib/libssl/crypto/arch/vax/opensslconf.h | |||
| @@ -16,6 +16,9 @@ | |||
| 16 | #ifndef OPENSSL_NO_GMP | 16 | #ifndef OPENSSL_NO_GMP |
| 17 | # define OPENSSL_NO_GMP | 17 | # define OPENSSL_NO_GMP |
| 18 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 19 | #ifndef OPENSSL_NO_KRB5 | 22 | #ifndef OPENSSL_NO_KRB5 |
| 20 | # define OPENSSL_NO_KRB5 | 23 | # define OPENSSL_NO_KRB5 |
| 21 | #endif | 24 | #endif |
diff --git a/src/lib/libssl/crypto/shlib_version b/src/lib/libssl/crypto/shlib_version index 84e2c2920d..ffdd3d2d56 100644 --- a/src/lib/libssl/crypto/shlib_version +++ b/src/lib/libssl/crypto/shlib_version | |||
| @@ -1,2 +1,2 @@ | |||
| 1 | major=16 | 1 | major=17 |
| 2 | minor=0 | 2 | minor=0 |
diff --git a/src/lib/libssl/shlib_version b/src/lib/libssl/shlib_version index 262f3bc13b..d85251eba7 100644 --- a/src/lib/libssl/shlib_version +++ b/src/lib/libssl/shlib_version | |||
| @@ -1,2 +1,2 @@ | |||
| 1 | major=13 | 1 | major=14 |
| 2 | minor=0 | 2 | minor=0 |
diff --git a/src/lib/libssl/ssl/shlib_version b/src/lib/libssl/ssl/shlib_version index 262f3bc13b..d85251eba7 100644 --- a/src/lib/libssl/ssl/shlib_version +++ b/src/lib/libssl/ssl/shlib_version | |||
| @@ -1,2 +1,2 @@ | |||
| 1 | major=13 | 1 | major=14 |
| 2 | minor=0 | 2 | minor=0 |
