Skip to content

Commit b72d69f

Browse files
hack to work around autoconf for test case
1 parent 6d396cc commit b72d69f

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/threadx.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,14 @@ jobs:
8787
- uses: actions/checkout@v4
8888
with:
8989
path: wolfmqtt
90+
- name: Change wolfmqtt configure.ac
91+
working-directory: ./wolfmqtt
92+
run: |
93+
# ThreadX requires tx_application_define(void*) as an entry point
94+
# this causes the simple conftest.c created by autoconf to fail when
95+
# checking for wolfssl. Removing the check for wolfssl here.
96+
sed -i '/AC_CHECK_LIB(\[wolfssl\],/d' configure.ac
97+
9098
- name: wolfmqtt autogen
9199
working-directory: ./wolfmqtt
92100
run: ./autogen.sh

0 commit comments

Comments
 (0)