diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2001-01-11 23:31:00 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-01-11 23:31:00 +0800 |
commit | dcc6d74afef1e90de67d0447851c8528a293a8ba (patch) | |
tree | 3c87e2146401538aa16600f42896221b328cdb95 | |
parent | 8fa5361a5ffd43d4bbcff617d5baa8cc019482b7 (diff) | |
download | gsoc2013-evolution-dcc6d74afef1e90de67d0447851c8528a293a8ba.tar gsoc2013-evolution-dcc6d74afef1e90de67d0447851c8528a293a8ba.tar.gz gsoc2013-evolution-dcc6d74afef1e90de67d0447851c8528a293a8ba.tar.bz2 gsoc2013-evolution-dcc6d74afef1e90de67d0447851c8528a293a8ba.tar.lz gsoc2013-evolution-dcc6d74afef1e90de67d0447851c8528a293a8ba.tar.xz gsoc2013-evolution-dcc6d74afef1e90de67d0447851c8528a293a8ba.tar.zst gsoc2013-evolution-dcc6d74afef1e90de67d0447851c8528a293a8ba.zip |
At the end of the configure process, report whether the documentation
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.
svn path=/trunk/; revision=7385
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 10 |
2 files changed, 15 insertions, 0 deletions
@@ -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 |