openssl/crypto/dso
Dr. Matthias St. Pierre 25f2138b0a Reorganize private crypto header files
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/9333)
2019-09-28 20:26:34 +02:00
..
build.info Have only one DSO_METHOD_openssl 2016-03-22 13:35:03 -04:00
dso_dl.c Following the license change, modify the boilerplates in crypto/dso/ 2018-12-06 14:50:38 +01:00
dso_dlfcn.c Cygwin: enable the use of Dl_info and dladdr() 2019-07-21 11:06:22 +02:00
dso_err.c util/mkerr.pl: make it not depend on the function code 2019-09-12 17:59:52 +02:00
dso_lib.c Fix compilation with -DREF_PRINT 2019-01-13 18:30:38 +01:00
dso_locl.h Reorganize private crypto header files 2019-09-28 20:26:34 +02:00
dso_openssl.c Rework DSO API conditions and configuration option 2019-04-01 06:14:50 +02:00
dso_vms.c Following the license change, modify the boilerplates in crypto/dso/ 2018-12-06 14:50:38 +01:00
dso_win32.c For the lack of GetModuleHandleEx(), we use DSO route for WinCE. 2019-03-29 09:54:12 +00:00