build: mmaitag in configure disabled by default

This was originally intended, but for testing it was set to
enabled by default. This is now corrected. Not all CI workers
support the necessary dependencies.
This commit is contained in:
Rainer Gerhards 2025-07-15 18:00:49 +02:00
parent 4a42252af8
commit d8717d3d80
No known key found for this signature in database
GPG Key ID: 0CB6B2A8BE80B499

View File

@ -1651,13 +1651,13 @@ AM_CONDITIONAL(ENABLE_MMPSTRUCDATA, test x$enable_mmpstrucdata = xyes)
# mmaitag
AC_ARG_ENABLE(mmaitag,
[AS_HELP_STRING([--enable-mmaitag],[Enable AI tagging module @<:@default=yes@:>@])],
[AS_HELP_STRING([--enable-mmaitag],[Enable AI tagging module @<:@default=no@:>@])],
[case "${enableval}" in
yes) enable_mmaitag="yes" ;;
no) enable_mmaitag="no" ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-mmaitag) ;;
esac],
[enable_mmaitag=yes]
[enable_mmaitag=no]
)
if test "x$enable_mmaitag" = "xyes"; then
PKG_CHECK_MODULES([CURL], [libcurl])