@@ -9,9 +9,12 @@ AC_CONFIG_AUX_DIR(setup)
99# Check for the existence of Anolis and Subversion
1010ANOLIS=`pwd`/utils/anolis
1111AC_CHECK_PROGS ( SVN , svn / usr/bin/svn / usr/local/bin/svn , [ not found] , $PATH )
12+ AC_CHECK_PROGS ( WGET , wget / usr/bin/wget / usr/local/bin/wget , [ not found] , $PATH )
13+
14+ ISSUE_ANNOTATIONS=build/issue-annotations.xml
1215
1316# Setup the flags needed for Anolis
14- ANOLIS_FLAGS="--w3c-compat-xref-a-placement --parser=lxml.html --output-encoding=us-ascii --allow-duplicate-dfns"
17+ ANOLIS_FLAGS="--w3c-compat-xref-a-placement --parser=lxml.html --output-encoding=us-ascii --allow-duplicate-dfns --annotations=$ISSUE_ANNOTATIONS --annotate-w3c-issues "
1518AC_SUBST ( ANOLIS_FLAGS )
1619
1720# Generate the printable date string
@@ -29,14 +32,13 @@ AC_SUBST(YEAR)
2932AC_SUBST ( DATE_STRING )
3033AC_SUBST ( CONDENSED_DATE_STRING )
3134AC_SUBST ( ANOLIS )
35+ AC_SUBST ( WGET )
36+ AC_SUBST ( ISSUE_ANNOTATIONS )
3237
3338# Ensure that Anolis and Subversion were found
34- if test "x$ANOLIS" == "xnot found"; then
35- echo "The configuration process was unable to find the anolis program on"
36- echo "your system. Anolis is required to build the HTML5 Specification."
37- echo "More information can be found on the Anolis website:"
38- echo ""
39- echo " http://anolis.gsnedders.com/"
39+ if test "x$WGET" == "xnot found"; then
40+ echo "The configuration process was unable to find the wget program on"
41+ echo "your system. Wget is required to build the HTML5 Specification."
4042 exit 0
4143fi
4244
0 commit comments