Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix out-of-source compile: fix path of config.h in crypto/ #122

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crypto/aes.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#include <stddef.h> /* size_t */

#include "../config.h"
#include "config.h"

typedef struct TGLC_aes_key {
char _dummy[
Expand Down
2 changes: 1 addition & 1 deletion crypto/aes_altern.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifdef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/aes_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifndef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/bn_altern.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifdef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/bn_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifndef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/err_altern.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifdef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/err_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifndef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/md5_altern.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifdef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/md5_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifndef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/rand_altern.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifdef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/rand_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifndef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/rsa_pem_altern.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifdef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/rsa_pem_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifndef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/sha_altern.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifdef TGL_AVOID_OPENSSL

Expand Down
2 changes: 1 addition & 1 deletion crypto/sha_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright Ben Wiederhake 2015
*/

#include "../config.h"
#include "config.h"

#ifndef TGL_AVOID_OPENSSL

Expand Down