summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Source/WolfSSL/wolfssl/include.am
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS-Plus/Source/WolfSSL/wolfssl/include.am')
-rw-r--r--FreeRTOS-Plus/Source/WolfSSL/wolfssl/include.am11
1 files changed, 9 insertions, 2 deletions
diff --git a/FreeRTOS-Plus/Source/WolfSSL/wolfssl/include.am b/FreeRTOS-Plus/Source/WolfSSL/wolfssl/include.am
index a02488fc8..201a96fbe 100644
--- a/FreeRTOS-Plus/Source/WolfSSL/wolfssl/include.am
+++ b/FreeRTOS-Plus/Source/WolfSSL/wolfssl/include.am
@@ -16,10 +16,17 @@ nobase_include_HEADERS+= \
wolfssl/certs_test.h \
wolfssl/test.h \
wolfssl/version.h \
- wolfssl/options.h \
wolfssl/ocsp.h \
- wolfssl/crl.h
+ wolfssl/crl.h \
+ wolfssl/wolfio.h
noinst_HEADERS+= \
wolfssl/internal.h
+# For distro build don't install options.h.
+# It depends on the architecture and conflicts with Multi-Arch.
+if BUILD_DISTRO
+noinst_HEADERS+= wolfssl/options.h
+else
+nobase_include_HEADERS+= wolfssl/options.h
+endif