0c994d54af
Currently, there are two different directories which contain internal header files of libcrypto which are meant to be shared internally: While header files in 'include/internal' are intended to be shared between libcrypto and libssl, the files in 'crypto/include/internal' are intended to be shared inside libcrypto only. To make things complicated, the include search path is set up in such a way that the directive #include "internal/file.h" could refer to a file in either of these two directoroes. This makes it necessary in some cases to add a '_int.h' suffix to some files to resolve this ambiguity: #include "internal/file.h" # located in 'include/internal' #include "internal/file_int.h" # located in 'crypto/include/internal' This commit moves the private crypto headers from 'crypto/include/internal' to 'include/crypto' As a result, the include directives become unambiguous #include "internal/file.h" # located in 'include/internal' #include "crypto/file.h" # located in 'include/crypto' hence the superfluous '_int.h' suffixes can be stripped. The files 'store_int.h' and 'store.h' need to be treated specially; they are joined into a single file. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9681) |
||
---|---|---|
.. | ||
a_bitstr.c | ||
a_d2i_fp.c | ||
a_digest.c | ||
a_dup.c | ||
a_gentm.c | ||
a_i2d_fp.c | ||
a_int.c | ||
a_mbstr.c | ||
a_object.c | ||
a_octet.c | ||
a_print.c | ||
a_sign.c | ||
a_strex.c | ||
a_strnid.c | ||
a_time.c | ||
a_type.c | ||
a_utctm.c | ||
a_utf8.c | ||
a_verify.c | ||
ameth_lib.c | ||
asn1_err.c | ||
asn1_gen.c | ||
asn1_item_list.c | ||
asn1_item_list.h | ||
asn1_lib.c | ||
asn1_locl.h | ||
asn1_par.c | ||
asn_mime.c | ||
asn_moid.c | ||
asn_mstbl.c | ||
asn_pack.c | ||
bio_asn1.c | ||
bio_ndef.c | ||
build.info | ||
charmap.h | ||
charmap.pl | ||
d2i_pr.c | ||
d2i_pu.c | ||
evp_asn1.c | ||
f_int.c | ||
f_string.c | ||
i2d_pr.c | ||
i2d_pu.c | ||
n_pkey.c | ||
nsseq.c | ||
p5_pbe.c | ||
p5_pbev2.c | ||
p5_scrypt.c | ||
p8_pkey.c | ||
standard_methods.h | ||
t_bitst.c | ||
t_pkey.c | ||
t_spki.c | ||
tasn_dec.c | ||
tasn_enc.c | ||
tasn_fre.c | ||
tasn_new.c | ||
tasn_prn.c | ||
tasn_scn.c | ||
tasn_typ.c | ||
tasn_utl.c | ||
tbl_standard.h | ||
x_algor.c | ||
x_bignum.c | ||
x_info.c | ||
x_int64.c | ||
x_long.c | ||
x_pkey.c | ||
x_sig.c | ||
x_spki.c | ||
x_val.c |