summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2008-08-21 20:46:17 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2008-08-21 20:46:17 +0000
commitd3eab55b0895250e88d5306680aa3251b07ebead (patch)
tree925669d02494ab7b3b3ce436865f0600cf60607a
parent54f838b9d3d7e6e85bab6ccebf5c7e78be2b6383 (diff)
downloadclasspath-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.
-rw-r--r--ChangeLog7
-rw-r--r--m4/acinclude.m43
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 42418678c..464606ba8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+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.
+
2008-08-21 Andrew John Hughes <gnu_andrew@member.fsf.org>
PR classpath/32028:
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
])