diff options
author | Andrew John Hughes <gnu_andrew@member.fsf.org> | 2008-08-21 20:46:17 +0000 |
---|---|---|
committer | Andrew John Hughes <gnu_andrew@member.fsf.org> | 2008-08-21 20:46:17 +0000 |
commit | d3eab55b0895250e88d5306680aa3251b07ebead (patch) | |
tree | 925669d02494ab7b3b3ce436865f0600cf60607a /m4/acinclude.m4 | |
parent | 54f838b9d3d7e6e85bab6ccebf5c7e78be2b6383 (diff) | |
download | classpath-d3eab55b0895250e88d5306680aa3251b07ebead.tar.gz |
Allow GJDoc 0.8+.
2008-08-22 Andrew John Hughes <gnu_andrew@member.fsf.org>
PR classpath/32028:
* m4/acinclude.m4:
Also allow versions of GJDoc from 0.8* on, as
CVS is 0.8.0-pre.
Diffstat (limited to 'm4/acinclude.m4')
-rw-r--r-- | m4/acinclude.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/m4/acinclude.m4 b/m4/acinclude.m4 index 0602c52a2..c89fd1e25 100644 --- a/m4/acinclude.m4 +++ b/m4/acinclude.m4 @@ -189,7 +189,8 @@ AC_DEFUN([CLASSPATH_WITH_GJDOC], 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 ]) |