Skip to content

Commit c401f5c

Browse files
committed
move the newly added wolfcrypt/src/wolfssl_sources.h to wolfssl/wolfcrypt/libwolfssl_sources.h, and likewise for wolfssl_sources_asm.h; revert changes to IDE/ project files.
1 parent 217440c commit c401f5c

138 files changed

Lines changed: 150 additions & 189 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

IDE/ECLIPSE/DEOS/deos_wolfssl/.project

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -609,16 +609,6 @@
609609
<type>1</type>
610610
<locationURI>WOLFSSL_ROOT/wolfcrypt/src/wolfmath.c</locationURI>
611611
</link>
612-
<link>
613-
<name>wolfcrypt/src/wolfssl_sources.h</name>
614-
<type>1</type>
615-
<locationURI>WOLFSSL_ROOT/wolfcrypt/src/wolfssl_sources.h</locationURI>
616-
</link>
617-
<link>
618-
<name>wolfcrypt/src/wolfssl_sources_asm.h</name>
619-
<type>1</type>
620-
<locationURI>WOLFSSL_ROOT/wolfcrypt/src/wolfssl_sources_asm.h</locationURI>
621-
</link>
622612
</linkedResources>
623613
<variableList>
624614
<variable>

IDE/XilinxSDK/2019_2/wolfCrypt_example/.project

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -705,16 +705,6 @@
705705
<type>1</type>
706706
<locationURI>PARENT-4-PROJECT_LOC/wolfcrypt/src/wolfmath.c</locationURI>
707707
</link>
708-
<link>
709-
<name>src/wolfcrypt/src/wolfssl_sources.h</name>
710-
<type>1</type>
711-
<locationURI>PARENT-4-PROJECT_LOC/wolfcrypt/src/wolfssl_sources.h</locationURI>
712-
</link>
713-
<link>
714-
<name>src/wolfcrypt/src/wolfssl_sources_asm.h</name>
715-
<type>1</type>
716-
<locationURI>PARENT-4-PROJECT_LOC/wolfcrypt/src/wolfssl_sources_asm.h</locationURI>
717-
</link>
718708
<link>
719709
<name>src/wolfcrypt/test/README.md</name>
720710
<type>1</type>

IDE/XilinxSDK/2022_1/wolfCrypt_FreeRTOS_example/.project

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1400,16 +1400,6 @@
14001400
<type>1</type>
14011401
<locationURI>PARENT-3-WORKSPACE_LOC/wolfcrypt/src/wolfmath.c</locationURI>
14021402
</link>
1403-
<link>
1404-
<name>src/wolfcrypt/src/wolfssl_sources.h</name>
1405-
<type>1</type>
1406-
<locationURI>PARENT-3-WORKSPACE_LOC/wolfcrypt/src/wolfssl_sources.h</locationURI>
1407-
</link>
1408-
<link>
1409-
<name>src/wolfcrypt/src/wolfssl_sources_asm.h</name>
1410-
<type>1</type>
1411-
<locationURI>PARENT-3-WORKSPACE_LOC/wolfcrypt/src/wolfssl_sources_asm.h</locationURI>
1412-
</link>
14131403
<link>
14141404
<name>src/wolfcrypt/test/test.c</name>
14151405
<type>1</type>

IDE/XilinxSDK/2022_1/wolfCrypt_example/.project

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1400,16 +1400,6 @@
14001400
<type>1</type>
14011401
<locationURI>PARENT-3-WORKSPACE_LOC/wolfcrypt/src/wolfmath.c</locationURI>
14021402
</link>
1403-
<link>
1404-
<name>src/wolfcrypt/src/wolfssl_sources.h</name>
1405-
<type>1</type>
1406-
<locationURI>PARENT-3-WORKSPACE_LOC/wolfcrypt/src/wolfssl_sources.h</locationURI>
1407-
</link>
1408-
<link>
1409-
<name>src/wolfcrypt/src/wolfssl_sources_asm.h</name>
1410-
<type>1</type>
1411-
<locationURI>PARENT-3-WORKSPACE_LOC/wolfcrypt/src/wolfssl_sources_asm.h</locationURI>
1412-
</link>
14131403
<link>
14141404
<name>src/wolfcrypt/test/test.c</name>
14151405
<type>1</type>

linuxkm/module_exports.c.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
2121
*/
2222

23-
#include "../wolfcrypt/src/wolfssl_sources.h"
23+
#include <wolfssl/wolfcrypt/libwolfssl_sources.h>
2424

2525
#ifdef HAVE_FIPS
2626
#define FIPS_NO_WRAPPERS

linuxkm/module_hooks.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
#define WOLFSSL_LINUXKM_NEED_LINUX_CURRENT
3333

34-
#include "../wolfcrypt/src/wolfssl_sources.h"
34+
#include <wolfssl/wolfcrypt/libwolfssl_sources.h>
3535

3636
#ifdef WOLFCRYPT_ONLY
3737
#include <wolfssl/version.h>

linuxkm/pie_first.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#error pie_first.c must be compiled -fPIE.
2424
#endif
2525

26-
#include "../wolfcrypt/src/wolfssl_sources.h"
26+
#include <wolfssl/wolfcrypt/libwolfssl_sources.h>
2727

2828
#include <wolfssl/ssl.h>
2929

linuxkm/pie_last.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#error pie_last.c must be compiled -fPIE.
2424
#endif
2525

26-
#include "../wolfcrypt/src/wolfssl_sources.h"
26+
#include <wolfssl/wolfcrypt/libwolfssl_sources.h>
2727

2828
#include <wolfssl/ssl.h>
2929

linuxkm/pie_redirect_table.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#error pie_redirect_table.c must be compiled -fPIE.
2424
#endif
2525

26-
#include "../wolfcrypt/src/wolfssl_sources.h"
26+
#include <wolfssl/wolfcrypt/libwolfssl_sources.h>
2727

2828
#include <wolfssl/ssl.h>
2929

src/bio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
2020
*/
2121

22-
#include "../wolfcrypt/src/wolfssl_sources.h"
22+
#include <wolfssl/wolfcrypt/libwolfssl_sources.h>
2323

2424
#if defined(OPENSSL_EXTRA) && !defined(_WIN32) && !defined(_GNU_SOURCE)
2525
/* turn on GNU extensions for XVASPRINTF with wolfSSL_BIO_printf */

0 commit comments

Comments
 (0)