Rémi Bernon (@rbernon) commented about configure.ac:
WINE_WARNING([No sound system was found. Windows applications will be silent.]) fi
+dnl **** Check for Vosk **** +if test x$with_vosk != xno +then + WINE_CHECK_SONAME(vosk,vosk_recognizer_new,[AC_SUBST(VOSK_LIBS,"-lvosk") ac_cv_lib_vosk=yes],,) +fi +WINE_NOTICE_WITH(vosk,[test x$with_vosk != xno -a x$ac_cv_lib_vosk != xyes], + [libvosk ${notice_platform}development files not found (or too old), Vosk aka speech recognition won't be supported.], + [enable_vosk]) +
```suggestion:-3+0 WINE_NOTICE_WITH(vosk,[test x$with_vosk != xno -a x$ac_cv_lib_vosk != xyes], [libvosk ${notice_platform}development files not found (or too old), speech recognition won't be supported.], [enable_windows_media_speech]) ``` Or maybe if you don't want to disable the module entirely: ```suggestion:-3+0 WINE_NOTICE_WITH(vosk,[test x$with_vosk != xno -a x$ac_cv_lib_vosk != xyes], [libvosk ${notice_platform}development files not found (or too old), speech recognition won't be supported.]) ``` (I'm also guessing here, I am not very familiar with `configure.ac`) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2091#note_24320