summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2005-05-16 21:48:05 +0000
committerGary Kramlich <grim@reaperworld.com>2005-05-16 21:48:05 +0000
commit97b4b30221e5dc2deba6196ed46213b472094119 (patch)
treeec49f52d96f08d42b95a268292b9b24cf5a69850 /Makefile.am
parent0067e7ebaa198467dd0320f50c8ffb24289c0387 (diff)
downloadpidgin-97b4b30221e5dc2deba6196ed46213b472094119.tar.gz
[gaim-migrate @ 12696]
Added some checks to configure.ac to check if doxygen and dot are available and act accordingly rather than spewing errors.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index 5f07a11057..1c54a39bb0 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -43,4 +43,10 @@ apps_DATA = gaim.desktop
SUBDIRS = doc intl pixmaps plugins po sounds src
docs: Doxyfile
+if HAVE_DOXYGEN
+ @echo "Running doxygen..."
@doxygen
+else
+ @echo "doxygen was not found during configure. Aborting."
+ @echo;
+endif