summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathon Jongsma <jjongsma@gnome.org>2006-05-09 01:50:57 +0000
committerJonathon Jongsma <jjongsma@gnome.org>2006-05-09 01:50:57 +0000
commit2e6b32ec83cfbabee8b453ab7bc52aaac73bd3fc (patch)
tree1b06b6fe9db0435597a7bc52ef1acdc143c33a34
parent4c21fec35f15c33dd6a5fadf35efe1266b0fb952 (diff)
2006-05-08 Jonathon Jongsma <jonathon.jongsma@gmail.com>
* configure.in: remove check for perl since we're not using any of the gmmproc stuff for cairomm * docs/reference/Makefile.am: add documentation dependency on all of the headers in the cairomm/ directory so that if a header changes the documentation will be rebuilt.
-rw-r--r--ChangeLog8
-rw-r--r--configure.in2
-rw-r--r--docs/reference/Makefile.am2
3 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6a8b54c..bc1425d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-05-08 Jonathon Jongsma <jonathon.jongsma@gmail.com>
+
+ * configure.in: remove check for perl since we're not using any of the
+ gmmproc stuff for cairomm
+ * docs/reference/Makefile.am: add documentation dependency on all of the
+ headers in the cairomm/ directory so that if a header changes the
+ documentation will be rebuilt.
+
2006-04-20 Murray Cumming <murrayc@murrayc.com>
* cairomm/context.cc:
diff --git a/configure.in b/configure.in
index d1f6b78..83047d2 100644
--- a/configure.in
+++ b/configure.in
@@ -92,8 +92,6 @@ AC_CHECK_HEADERS(string list map, , exit)
PKG_CHECK_MODULES(CAIROMM, cairo >= 1.0)
-GLIBMM_CHECK_PERL([5.6.0])
-
dnl Check whether to build the documentation directory
DOCS_SUBDIR="" dnl set DOCS_SUBDIR initially blank
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
index 0c356c5..934740a 100644
--- a/docs/reference/Makefile.am
+++ b/docs/reference/Makefile.am
@@ -9,7 +9,7 @@ EXTRA_DIST = $(DOXYGEN_CONFIGFILE_SOURCE) \
index_html = html/index.html
-$(index_html): $(DOXYGEN_CONFIGFILE)
+$(index_html): $(DOXYGEN_CONFIGFILE) $(wildcard $(top_srcdir)/cairomm/*.h)
-rm -rf html
doxygen $(DOXYGEN_CONFIGFILE) \
2> doxygen-warnings.txt | tee doxygen-output.txt && cat doxygen-warnings.txt