Change misc.c error to warning and exclude the misc.c code from being compiled. Most people include all .c files and by default inlining is allowed, which in turn causes an #error in misc.c and it must be excluded. Since we know its already been properly included there is no reason to throw error here. Instead, show warning and exclude code in .c file.

This commit is contained in:
David Garske 2016-08-08 13:13:59 -07:00
parent 76e8438059
commit 317a7f2662
1 changed files with 6 additions and 2 deletions

View File

@ -46,8 +46,9 @@
/* Check for if compiling misc.c when not needed. */ /* Check for if compiling misc.c when not needed. */
#if !defined(WOLFSSL_MISC_INCLUDED) && !defined(NO_INLINE) #if !defined(WOLFSSL_MISC_INCLUDED) && !defined(NO_INLINE)
#error misc.c does not need to be compiled when not defined NO_INLINE #warning misc.c does not need to be compiled when using inline (NO_INLINE not defined)
#endif
#else
#ifdef INTEL_INTRINSICS #ifdef INTEL_INTRINSICS
@ -203,4 +204,7 @@ STATIC INLINE int ConstantCompare(const byte* a, const byte* b, int length)
#undef STATIC #undef STATIC
#endif /* !WOLFSSL_MISC_INCLUDED && !NO_INLINE */
#endif /* WOLF_CRYPT_MISC_C */ #endif /* WOLF_CRYPT_MISC_C */