mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-29 06:15:24 +00:00
18 lines
576 B
Plaintext
18 lines
576 B
Plaintext
dnl
|
|
dnl Online check for updates
|
|
dnl
|
|
|
|
AC_ARG_ENABLE(
|
|
[update-check],
|
|
AC_HELP_STRING([--enable-update-check],[If enabled, the GUI will check online for available updates daily by downloading a small XML file from the MKVToolNix home page (yes)]),
|
|
[],
|
|
[enable_update_check=yes]
|
|
)
|
|
|
|
if test x"$enable_update_check" = xyes ; then
|
|
AC_DEFINE([HAVE_UPDATE_CHECK],[1],[Defined if the online update check is enabled])
|
|
opt_features_yes="$opt_features_yes\n * online update check in the GUI"
|
|
else
|
|
opt_features_no="$opt_features_no\n * online update check in the GUI"
|
|
fi
|