forked from wolfSSL/wolfssl
Merge pull request #3280 from dgarske/ebsnet
Fix for bad pre-processor logic
This commit is contained in:
@ -341,7 +341,9 @@
|
|||||||
#undef SIZEOF_LONG
|
#undef SIZEOF_LONG
|
||||||
#define SIZEOF_LONG_LONG 8
|
#define SIZEOF_LONG_LONG 8
|
||||||
#else
|
#else
|
||||||
#sslpro: settings.h - please implement SIZEOF_LONG and SIZEOF_LONG_LONG
|
#if !defined(SIZEOF_LONG) && !defined(SIZEOF_LONG_LONG)
|
||||||
|
#error settings.h - please implement SIZEOF_LONG and SIZEOF_LONG_LONG
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define XMALLOC(s, h, type) ((void *)rtp_malloc((s), SSL_PRO_MALLOC))
|
#define XMALLOC(s, h, type) ((void *)rtp_malloc((s), SSL_PRO_MALLOC))
|
||||||
|
@ -831,7 +831,9 @@ extern void uITRON4_free(void *p) ;
|
|||||||
#undef SIZEOF_LONG
|
#undef SIZEOF_LONG
|
||||||
#define SIZEOF_LONG_LONG 8
|
#define SIZEOF_LONG_LONG 8
|
||||||
#else
|
#else
|
||||||
#error settings.h - please implement SIZEOF_LONG and SIZEOF_LONG_LONG
|
#if !defined(SIZEOF_LONG) && !defined(SIZEOF_LONG_LONG)
|
||||||
|
#error settings.h - please implement SIZEOF_LONG and SIZEOF_LONG_LONG
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define XMALLOC(s, h, type) ((void *)rtp_malloc((s), SSL_PRO_MALLOC))
|
#define XMALLOC(s, h, type) ((void *)rtp_malloc((s), SSL_PRO_MALLOC))
|
||||||
@ -841,7 +843,9 @@ extern void uITRON4_free(void *p) ;
|
|||||||
#if (WINMSP3)
|
#if (WINMSP3)
|
||||||
#define XSTRNCASECMP(s1,s2,n) _strnicmp((s1),(s2),(n))
|
#define XSTRNCASECMP(s1,s2,n) _strnicmp((s1),(s2),(n))
|
||||||
#else
|
#else
|
||||||
#sslpro: settings.h - please implement XSTRNCASECMP - needed for HAVE_ECC
|
#ifndef XSTRNCASECMP
|
||||||
|
#error settings.h - please implement XSTRNCASECMP - needed for HAVE_ECC
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define WOLFSSL_HAVE_MAX
|
#define WOLFSSL_HAVE_MAX
|
||||||
|
Reference in New Issue
Block a user