mirror of https://github.com/odrling/Aegisub
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:
parent
287b91f8da
commit
4254c7e46e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue