Skip to content

Commit

Permalink
Merge pull request wolfSSL#7774 from Laboratory-for-Safe-and-Secure-S…
Browse files Browse the repository at this point in the history
…ystems/zephyr_v3_7

Zephyr V3.7 warning fix
  • Loading branch information
dgarske authored Jul 22, 2024
2 parents a9ff773 + bdfe2c3 commit 604a1fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wolfssl/wolfcrypt/wc_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@
#elif defined(WOLFSSL_ZEPHYR)
#include <version.h>
#ifndef SINGLE_THREADED
#ifndef CONFIG_PTHREAD_IPC
#error "Need CONFIG_PTHREAD_IPC for threading"
#if !defined(CONFIG_PTHREAD_IPC) && !defined(CONFIG_POSIX_THREADS)
#error "Threading needs CONFIG_PTHREAD_IPC / CONFIG_POSIX_THREADS"
#endif
#if KERNEL_VERSION_NUMBER >= 0x30100
#include <zephyr/kernel.h>
Expand Down

0 comments on commit 604a1fe

Please sign in to comment.