Fix missing/misplaced #include's
This commit is contained in:
parent
c3e3395c82
commit
981732bb8e
@ -49,6 +49,7 @@
|
|||||||
#include "polarssl/platform.h"
|
#include "polarssl/platform.h"
|
||||||
#else
|
#else
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
#define polarssl_printf printf
|
#define polarssl_printf printf
|
||||||
#define polarssl_malloc malloc
|
#define polarssl_malloc malloc
|
||||||
#define polarssl_free free
|
#define polarssl_free free
|
||||||
|
@ -57,6 +57,7 @@
|
|||||||
#include "polarssl/platform.h"
|
#include "polarssl/platform.h"
|
||||||
#else
|
#else
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
#define polarssl_printf printf
|
#define polarssl_printf printf
|
||||||
#define polarssl_malloc malloc
|
#define polarssl_malloc malloc
|
||||||
#define polarssl_free free
|
#define polarssl_free free
|
||||||
|
@ -51,6 +51,7 @@
|
|||||||
#include "polarssl/platform.h"
|
#include "polarssl/platform.h"
|
||||||
#else
|
#else
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
#define polarssl_free free
|
#define polarssl_free free
|
||||||
#define polarssl_malloc malloc
|
#define polarssl_malloc malloc
|
||||||
#define polarssl_snprintf snprintf
|
#define polarssl_snprintf snprintf
|
||||||
|
@ -51,6 +51,7 @@
|
|||||||
#include "polarssl/platform.h"
|
#include "polarssl/platform.h"
|
||||||
#else
|
#else
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
#define polarssl_free free
|
#define polarssl_free free
|
||||||
#define polarssl_malloc malloc
|
#define polarssl_malloc malloc
|
||||||
#define polarssl_snprintf snprintf
|
#define polarssl_snprintf snprintf
|
||||||
|
@ -134,7 +134,8 @@ cleanup
|
|||||||
CC=gcc CFLAGS=-Werror make
|
CC=gcc CFLAGS=-Werror make
|
||||||
|
|
||||||
# this is meant to cath missing #define polarssl_printf etc
|
# this is meant to cath missing #define polarssl_printf etc
|
||||||
msg "build: full config except platform.c" # ~ 30s
|
# disable fsio to catch some more missing #include <stdio.h>
|
||||||
|
msg "build: full config except platform/fsio" # ~ 30s
|
||||||
cleanup
|
cleanup
|
||||||
cp "$CONFIG_H" "$CONFIG_BAK"
|
cp "$CONFIG_H" "$CONFIG_BAK"
|
||||||
scripts/config.pl full
|
scripts/config.pl full
|
||||||
@ -142,6 +143,7 @@ scripts/config.pl unset POLARSSL_PLATFORM_C
|
|||||||
scripts/config.pl unset POLARSSL_PLATFORM_MEMORY
|
scripts/config.pl unset POLARSSL_PLATFORM_MEMORY
|
||||||
scripts/config.pl unset POLARSSL_MEMORY_C
|
scripts/config.pl unset POLARSSL_MEMORY_C
|
||||||
scripts/config.pl unset POLARSSL_MEMORY_BUFFER_ALLOC_C
|
scripts/config.pl unset POLARSSL_MEMORY_BUFFER_ALLOC_C
|
||||||
|
scripts/config.pl unset POLARSSL_FS_IO
|
||||||
CC=gcc CFLAGS=-Werror make
|
CC=gcc CFLAGS=-Werror make
|
||||||
|
|
||||||
if uname -a | grep -F x86_64 >/dev/null; then
|
if uname -a | grep -F x86_64 >/dev/null; then
|
||||||
|
Loading…
Reference in New Issue
Block a user