summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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