aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.in10
2 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7ebf0e69b9..902a1313f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-11 Federico Mena Quintero <federico@helixcode.com>
+
+ * configure.in: At the end of the configure process, report
+ whether the documentation files will be built or not.
+
2001-01-10 Tuomas Kuosmanen <tigert@helixcode.com>
* art/move-message.png, art/move-message.png: New versions.
diff --git a/configure.in b/configure.in
index 2e3277a319..51983bad42 100644
--- a/configure.in
+++ b/configure.in
@@ -742,4 +742,14 @@ echo "
Dot Locking: $msg_dot
File Locking: $msg_file
Crypto support: $msg_crypto
+ Gtk-doc: $enable_gtk_doc"
+
+if test x$enable_gtk_doc = xyes; then
+echo "
+ Programming documentation files will be built automatically.
+"
+else
+echo "
+ Programming documentation files will not be built.
"
+fi