Add tag support (hard coded) to configure. In 3.0 I'll add an option to default the update checker to OFF on first-launch rather than ON as we have it now. This is useful for distributions that have their own update mechanics. closes #1132

Originally committed to SVN as r5356.
This commit is contained in:
Amar Takhar 2011-02-22 04:11:33 +00:00
parent 287b91f8da
commit 4254c7e46e
2 changed files with 7 additions and 0 deletions

View File

@ -197,6 +197,13 @@ else
AC_MSG_RESULT([no])
fi
# Set tags for the update checker.
if test "$build_darwin" = "yes"; then
AC_DEFINE(UPDATE_CHECKER_ACCEPT_TAGS, "osx unix source", [Do not change these from the default.])
else
AC_DEFINE(UPDATE_CHECKER_ACCEPT_TAGS, "unix source", [Do not change these from the default.])
fi
####################
# Check for programs

View File