This patch allows GJDoc 0.8 (from CVS) to be used as Mark pointed out. ChangeLog:
2008-08-22 Andrew John Hughes <[EMAIL PROTECTED]> PR classpath/32028: * m4/acinclude.m4: Also allow versions of GJDoc from 0.8* on, as CVS is 0.8.0-pre. -- Andrew :) Support Free Java! Contribute to GNU Classpath and the OpenJDK http://www.gnu.org/software/classpath http://openjdk.java.net PGP Key: 94EFD9D8 (http://subkeys.pgp.net) Fingerprint = F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
Index: m4/acinclude.m4 =================================================================== RCS file: /sources/classpath/classpath/m4/acinclude.m4,v retrieving revision 1.39 diff -u -u -r1.39 acinclude.m4 --- m4/acinclude.m4 21 Aug 2008 00:44:55 -0000 1.39 +++ m4/acinclude.m4 21 Aug 2008 18:02:12 -0000 @@ -189,7 +189,8 @@ AC_MSG_RESULT(${gjdoc_version}) case ${gjdoc_version} in 0.7.9) ;; - *) AC_MSG_ERROR([Building documentation requires GJDoc 0.7.9, ${gjdoc_version} found.]) ;; + 0.8*) ;; + *) AC_MSG_ERROR([Building documentation requires GJDoc >= 0.7.9, ${gjdoc_version} found.]) ;; esac fi ])