]> SALOME platform Git repositories - modules/kernel.git/blob - salome_adm/unix/config_files/check_htmlgen.m4
Salome HOME
026f80d076f00248fb95ae131462e686efd9c0c8
[modules/kernel.git] / salome_adm / unix / config_files / check_htmlgen.m4
1 dnl Copyright (C) 2003  CEA/DEN, EDF R&D
2
3 AC_DEFUN([CHECK_HTML_GENERATORS],[
4
5 #AC_CHECKING(for html generators)
6 AC_CHECKING(for doxygen)
7
8 doxygen_ok=yes
9
10 dnl were is doxygen ?
11
12 AC_PATH_PROG(DOXYGEN,doxygen) 
13         
14 if test "x$DOXYGEN" = "x"
15 then
16   doxygen_ok=no
17   AC_MSG_RESULT(no)
18   AC_MSG_WARN(doxygen not found)
19 else
20   dnl AC_SUBST(DOXYGEN)
21   AC_MSG_RESULT(yes)
22 fi
23
24 AC_CHECKING(for graphviz)
25
26 graphviz_ok=yes
27
28 dnl were is graphviz ?
29
30 AC_PATH_PROG(DOT,dot) 
31         
32 if test "x$DOT" = "x" ; then
33   graphviz_ok=no
34   AC_MSG_RESULT(no)
35   AC_MSG_WARN(graphviz not found)
36 else
37   AC_MSG_RESULT(yes)
38 fi
39
40 ])dnl
41 dnl