configure: report whether or not 'mkvtoolnix' will be built

This commit is contained in:
Moritz Bunkus 2022-03-13 10:47:20 +01:00
parent 873e9d6f4a
commit a2f9467f9e
No known key found for this signature in database
GPG Key ID: 74AF00ADF2E32C85

View File

@ -16,6 +16,10 @@ else
opt_features_no="$opt_features_no\n * online update check in the GUI"
fi
dnl
dnl mkvtoolnix wrapper binary
dnl
AC_ARG_ENABLE(
[mkvtoolnix],
AC_HELP_STRING([--enable-mkvtoolnix],[If enabled, the 'mkvtoolnix' wrapper binary will be built (default: no)]),
@ -23,4 +27,10 @@ AC_ARG_ENABLE(
[BUILD_MKVTOOLNIX=no]
)
if test x"$BUILD_MKVTOOLNIX" = xyes ; then
opt_features_yes="$opt_features_yes\n * 'mkvtoolnix' wrapper binary"
else
opt_features_no="$opt_features_no\n * 'mkvtoolnix' wrapper binary"
fi
AC_SUBST(BUILD_MKVTOOLNIX)