diff options
author | Richard Levitte <levitte@openssl.org> | 2015-05-14 16:56:48 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2015-05-14 17:21:40 +0200 |
commit | b39fc560612984e65ec30d7f37487303bf514fb3 (patch) | |
tree | 10f33004ee5a296367ea155344287b9d29c05616 /crypto/bio | |
parent | Adjust unixly mk1mf after introduction of tkey (diff) | |
download | openssl-b39fc560612984e65ec30d7f37487303bf514fb3.tar.xz openssl-b39fc560612984e65ec30d7f37487303bf514fb3.zip |
Identify and move common internal libcrypto header files
There are header files in crypto/ that are used by a number of crypto/
submodules. Move those to crypto/include/internal and adapt the
affected source code and Makefiles.
The header files that got moved are:
crypto/cryptolib.h
crypto/md32_common.h
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/bio')
-rw-r--r-- | crypto/bio/b_dump.c | 2 | ||||
-rw-r--r-- | crypto/bio/b_print.c | 2 | ||||
-rw-r--r-- | crypto/bio/b_sock.c | 2 | ||||
-rw-r--r-- | crypto/bio/bf_buff.c | 2 | ||||
-rw-r--r-- | crypto/bio/bf_lbuf.c | 2 | ||||
-rw-r--r-- | crypto/bio/bf_nbio.c | 2 | ||||
-rw-r--r-- | crypto/bio/bf_null.c | 2 | ||||
-rw-r--r-- | crypto/bio/bio_cb.c | 2 | ||||
-rw-r--r-- | crypto/bio/bio_lib.c | 2 | ||||
-rw-r--r-- | crypto/bio/bss_acpt.c | 2 | ||||
-rw-r--r-- | crypto/bio/bss_conn.c | 2 | ||||
-rw-r--r-- | crypto/bio/bss_dgram.c | 2 | ||||
-rw-r--r-- | crypto/bio/bss_fd.c | 2 | ||||
-rw-r--r-- | crypto/bio/bss_file.c | 2 | ||||
-rw-r--r-- | crypto/bio/bss_log.c | 2 | ||||
-rw-r--r-- | crypto/bio/bss_mem.c | 2 | ||||
-rw-r--r-- | crypto/bio/bss_null.c | 2 | ||||
-rw-r--r-- | crypto/bio/bss_sock.c | 2 |
18 files changed, 18 insertions, 18 deletions
diff --git a/crypto/bio/b_dump.c b/crypto/bio/b_dump.c index 622a261d52..33191c1b30 100644 --- a/crypto/bio/b_dump.c +++ b/crypto/bio/b_dump.c @@ -61,7 +61,7 @@ */ #include <stdio.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bio_lcl.h" #define TRUNCATE diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c index 7c81e25d48..06cadc8a63 100644 --- a/crypto/bio/b_print.c +++ b/crypto/bio/b_print.c @@ -72,7 +72,7 @@ #include <ctype.h> #include <assert.h> #include <limits.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef NO_SYS_TYPES_H # include <sys/types.h> #endif diff --git a/crypto/bio/b_sock.c b/crypto/bio/b_sock.c index e3a1ee94da..48e40360ad 100644 --- a/crypto/bio/b_sock.c +++ b/crypto/bio/b_sock.c @@ -60,7 +60,7 @@ #include <stdlib.h> #include <errno.h> #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/bio.h> #if defined(OPENSSL_SYS_NETWARE) && defined(NETWARE_BSDSOCK) # include <netdb.h> diff --git a/crypto/bio/bf_buff.c b/crypto/bio/bf_buff.c index 6487f437d5..4fd8d15405 100644 --- a/crypto/bio/bf_buff.c +++ b/crypto/bio/bf_buff.c @@ -58,7 +58,7 @@ #include <stdio.h> #include <errno.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/bio.h> static int buffer_write(BIO *h, const char *buf, int num); diff --git a/crypto/bio/bf_lbuf.c b/crypto/bio/bf_lbuf.c index e948e924b9..cc429813e2 100644 --- a/crypto/bio/bf_lbuf.c +++ b/crypto/bio/bf_lbuf.c @@ -58,7 +58,7 @@ #include <stdio.h> #include <errno.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/bio.h> #include <openssl/evp.h> diff --git a/crypto/bio/bf_nbio.c b/crypto/bio/bf_nbio.c index dc98c4fd5d..7980711d3d 100644 --- a/crypto/bio/bf_nbio.c +++ b/crypto/bio/bf_nbio.c @@ -58,7 +58,7 @@ #include <stdio.h> #include <errno.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/rand.h> #include <openssl/bio.h> diff --git a/crypto/bio/bf_null.c b/crypto/bio/bf_null.c index e0c79e8291..0d55b15150 100644 --- a/crypto/bio/bf_null.c +++ b/crypto/bio/bf_null.c @@ -58,7 +58,7 @@ #include <stdio.h> #include <errno.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/bio.h> /* diff --git a/crypto/bio/bio_cb.c b/crypto/bio/bio_cb.c index dcb428b351..f0dfe8268c 100644 --- a/crypto/bio/bio_cb.c +++ b/crypto/bio/bio_cb.c @@ -59,7 +59,7 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/bio.h> #include <openssl/err.h> diff --git a/crypto/bio/bio_lib.c b/crypto/bio/bio_lib.c index 7542d1c885..19cd06983f 100644 --- a/crypto/bio/bio_lib.c +++ b/crypto/bio/bio_lib.c @@ -59,7 +59,7 @@ #include <stdio.h> #include <errno.h> #include <openssl/crypto.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/bio.h> #include <openssl/stack.h> diff --git a/crypto/bio/bss_acpt.c b/crypto/bio/bss_acpt.c index 48435b09eb..16a660800d 100644 --- a/crypto/bio/bss_acpt.c +++ b/crypto/bio/bss_acpt.c @@ -59,7 +59,7 @@ #include <stdio.h> #include <errno.h> #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/bio.h> #ifndef OPENSSL_NO_SOCK diff --git a/crypto/bio/bss_conn.c b/crypto/bio/bss_conn.c index 9b2cee44cf..f23adb217a 100644 --- a/crypto/bio/bss_conn.c +++ b/crypto/bio/bss_conn.c @@ -59,7 +59,7 @@ #include <stdio.h> #include <errno.h> #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/bio.h> #ifndef OPENSSL_NO_SOCK diff --git a/crypto/bio/bss_dgram.c b/crypto/bio/bss_dgram.c index 268481c9ab..58725a1466 100644 --- a/crypto/bio/bss_dgram.c +++ b/crypto/bio/bss_dgram.c @@ -60,7 +60,7 @@ #include <stdio.h> #include <errno.h> #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/bio.h> #ifndef OPENSSL_NO_DGRAM diff --git a/crypto/bio/bss_fd.c b/crypto/bio/bss_fd.c index 5f4e34481b..5bade20e36 100644 --- a/crypto/bio/bss_fd.c +++ b/crypto/bio/bss_fd.c @@ -59,7 +59,7 @@ #include <stdio.h> #include <errno.h> #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #if defined(OPENSSL_NO_POSIX_IO) /* diff --git a/crypto/bio/bss_file.c b/crypto/bio/bss_file.c index 1da6b86181..cebad75456 100644 --- a/crypto/bio/bss_file.c +++ b/crypto/bio/bss_file.c @@ -85,7 +85,7 @@ # include <stdio.h> # include <errno.h> -# include "cryptlib.h" +# include "internal/cryptlib.h" # include "bio_lcl.h" # include <openssl/err.h> diff --git a/crypto/bio/bss_log.c b/crypto/bio/bss_log.c index 2399ff8b10..f59ec7cce7 100644 --- a/crypto/bio/bss_log.c +++ b/crypto/bio/bss_log.c @@ -65,7 +65,7 @@ #include <stdio.h> #include <errno.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #if defined(OPENSSL_SYS_WINCE) #elif defined(OPENSSL_SYS_WIN32) diff --git a/crypto/bio/bss_mem.c b/crypto/bio/bss_mem.c index c55344d320..a1f5e8d960 100644 --- a/crypto/bio/bss_mem.c +++ b/crypto/bio/bss_mem.c @@ -58,7 +58,7 @@ #include <stdio.h> #include <errno.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/bio.h> static int mem_write(BIO *h, const char *buf, int num); diff --git a/crypto/bio/bss_null.c b/crypto/bio/bss_null.c index 6a03fa2465..ba39c4c8a1 100644 --- a/crypto/bio/bss_null.c +++ b/crypto/bio/bss_null.c @@ -58,7 +58,7 @@ #include <stdio.h> #include <errno.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/bio.h> static int null_write(BIO *h, const char *buf, int num); diff --git a/crypto/bio/bss_sock.c b/crypto/bio/bss_sock.c index 5a73e81315..1673b32b3d 100644 --- a/crypto/bio/bss_sock.c +++ b/crypto/bio/bss_sock.c @@ -59,7 +59,7 @@ #include <stdio.h> #include <errno.h> #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_SOCK |