Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/majn/tgl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHedayat Vatankhah <hedayat.fwd@gmail.com>2017-01-07 23:07:27 +0300
committerHedayat Vatankhah <hedayat.fwd@gmail.com>2017-01-07 23:08:29 +0300
commit0e4bad38703881ce960d3c5a43e653459d78b822 (patch)
tree90b4f7333a0d325f18d435e3261467fbd8c53c25
parentffb04caca71de0cddf28cd33a4575922900a59ed (diff)
Fix out-of-source compile: fix path of config.h in crypto/
-rw-r--r--crypto/aes.h2
-rw-r--r--crypto/aes_altern.c2
-rw-r--r--crypto/aes_openssl.c2
-rw-r--r--crypto/bn_altern.c2
-rw-r--r--crypto/bn_openssl.c2
-rw-r--r--crypto/err_altern.c2
-rw-r--r--crypto/err_openssl.c2
-rw-r--r--crypto/md5_altern.c2
-rw-r--r--crypto/md5_openssl.c2
-rw-r--r--crypto/rand_altern.c2
-rw-r--r--crypto/rand_openssl.c2
-rw-r--r--crypto/rsa_pem_altern.c2
-rw-r--r--crypto/rsa_pem_openssl.c2
-rw-r--r--crypto/sha_altern.c2
-rw-r--r--crypto/sha_openssl.c2
15 files changed, 15 insertions, 15 deletions
diff --git a/crypto/aes.h b/crypto/aes.h
index f0c61aa..2fddc01 100644
--- a/crypto/aes.h
+++ b/crypto/aes.h
@@ -23,7 +23,7 @@
#include <stddef.h> /* size_t */
-#include "../config.h"
+#include "config.h"
typedef struct TGLC_aes_key {
char _dummy[
diff --git a/crypto/aes_altern.c b/crypto/aes_altern.c
index 9f42042..e446065 100644
--- a/crypto/aes_altern.c
+++ b/crypto/aes_altern.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifdef TGL_AVOID_OPENSSL
diff --git a/crypto/aes_openssl.c b/crypto/aes_openssl.c
index c6c1840..495099e 100644
--- a/crypto/aes_openssl.c
+++ b/crypto/aes_openssl.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifndef TGL_AVOID_OPENSSL
diff --git a/crypto/bn_altern.c b/crypto/bn_altern.c
index e1ae412..73dae46 100644
--- a/crypto/bn_altern.c
+++ b/crypto/bn_altern.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifdef TGL_AVOID_OPENSSL
diff --git a/crypto/bn_openssl.c b/crypto/bn_openssl.c
index 73f3c69..c5bd374 100644
--- a/crypto/bn_openssl.c
+++ b/crypto/bn_openssl.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifndef TGL_AVOID_OPENSSL
diff --git a/crypto/err_altern.c b/crypto/err_altern.c
index 219b161..8921543 100644
--- a/crypto/err_altern.c
+++ b/crypto/err_altern.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifdef TGL_AVOID_OPENSSL
diff --git a/crypto/err_openssl.c b/crypto/err_openssl.c
index b9dab5c..563f6a8 100644
--- a/crypto/err_openssl.c
+++ b/crypto/err_openssl.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifndef TGL_AVOID_OPENSSL
diff --git a/crypto/md5_altern.c b/crypto/md5_altern.c
index 30c3018..0c3ae86 100644
--- a/crypto/md5_altern.c
+++ b/crypto/md5_altern.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifdef TGL_AVOID_OPENSSL
diff --git a/crypto/md5_openssl.c b/crypto/md5_openssl.c
index 1ba3c9e..8c82235 100644
--- a/crypto/md5_openssl.c
+++ b/crypto/md5_openssl.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifndef TGL_AVOID_OPENSSL
diff --git a/crypto/rand_altern.c b/crypto/rand_altern.c
index aca536f..8c201b1 100644
--- a/crypto/rand_altern.c
+++ b/crypto/rand_altern.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifdef TGL_AVOID_OPENSSL
diff --git a/crypto/rand_openssl.c b/crypto/rand_openssl.c
index bb2d504..31f455b 100644
--- a/crypto/rand_openssl.c
+++ b/crypto/rand_openssl.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifndef TGL_AVOID_OPENSSL
diff --git a/crypto/rsa_pem_altern.c b/crypto/rsa_pem_altern.c
index ad5aecb..4bfa056 100644
--- a/crypto/rsa_pem_altern.c
+++ b/crypto/rsa_pem_altern.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifdef TGL_AVOID_OPENSSL
diff --git a/crypto/rsa_pem_openssl.c b/crypto/rsa_pem_openssl.c
index db653f2..32752d3 100644
--- a/crypto/rsa_pem_openssl.c
+++ b/crypto/rsa_pem_openssl.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifndef TGL_AVOID_OPENSSL
diff --git a/crypto/sha_altern.c b/crypto/sha_altern.c
index 7615cfd..c48a60c 100644
--- a/crypto/sha_altern.c
+++ b/crypto/sha_altern.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifdef TGL_AVOID_OPENSSL
diff --git a/crypto/sha_openssl.c b/crypto/sha_openssl.c
index eb40467..6f3390a 100644
--- a/crypto/sha_openssl.c
+++ b/crypto/sha_openssl.c
@@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/
-#include "../config.h"
+#include "config.h"
#ifndef TGL_AVOID_OPENSSL