summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-05-14 16:56:48 +0200
committerRichard Levitte <levitte@openssl.org>2015-05-14 17:21:40 +0200
commitb39fc560612984e65ec30d7f37487303bf514fb3 (patch)
tree10f33004ee5a296367ea155344287b9d29c05616 /crypto/engine
parent7a05eaac5e15e327b7c51258bf892c8ae5b1d956 (diff)
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/engine')
-rw-r--r--crypto/engine/eng_all.c2
-rw-r--r--crypto/engine/eng_int.h2
-rw-r--r--crypto/engine/eng_openssl.c2
-rw-r--r--crypto/engine/eng_table.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/crypto/engine/eng_all.c b/crypto/engine/eng_all.c
index b7d2529596..5ab498e350 100644
--- a/crypto/engine/eng_all.c
+++ b/crypto/engine/eng_all.c
@@ -57,7 +57,7 @@
*
*/
-#include "cryptlib.h"
+#include "internal/cryptlib.h"
#include "eng_int.h"
void ENGINE_load_builtin_engines(void)
diff --git a/crypto/engine/eng_int.h b/crypto/engine/eng_int.h
index 46f163b1f5..42674e14fa 100644
--- a/crypto/engine/eng_int.h
+++ b/crypto/engine/eng_int.h
@@ -65,7 +65,7 @@
#ifndef HEADER_ENGINE_INT_H
# define HEADER_ENGINE_INT_H
-# include "cryptlib.h"
+# include "internal/cryptlib.h"
/* Take public definitions from engine.h */
# include <openssl/engine.h>
diff --git a/crypto/engine/eng_openssl.c b/crypto/engine/eng_openssl.c
index 560c9b3c93..eaf06180c9 100644
--- a/crypto/engine/eng_openssl.c
+++ b/crypto/engine/eng_openssl.c
@@ -64,7 +64,7 @@
#include <stdio.h>
#include <openssl/crypto.h>
-#include "cryptlib.h"
+#include "internal/cryptlib.h"
#include <openssl/engine.h>
#include <openssl/dso.h>
#include <openssl/pem.h>
diff --git a/crypto/engine/eng_table.c b/crypto/engine/eng_table.c
index f0f4dbbf76..26b92308af 100644
--- a/crypto/engine/eng_table.c
+++ b/crypto/engine/eng_table.c
@@ -52,7 +52,7 @@
*
*/
-#include "cryptlib.h"
+#include "internal/cryptlib.h"
#include <openssl/evp.h>
#include <openssl/lhash.h>
#include "eng_int.h"