We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d396cc commit b72d69fCopy full SHA for b72d69f
1 file changed
.github/workflows/threadx.yml
@@ -87,6 +87,14 @@ jobs:
87
- uses: actions/checkout@v4
88
with:
89
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
+
98
- name: wolfmqtt autogen
99
working-directory: ./wolfmqtt
100
run: ./autogen.sh
0 commit comments