]> SALOME platform Git repositories - modules/kernel.git/blob - salome_adm/unix/config_files/check_htmlgen.m4
Salome HOME
PR: mergefrom_BSEC_br1_14Mar04
[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_WARN(doxygen not found)
18 fi
19
20 AC_CHECKING(for graphviz)
21
22 graphviz_ok=yes
23
24 dnl were is graphviz ?
25
26 AC_PATH_PROG(DOT,dot) 
27         
28 if test "x$DOT" = "x" ; then
29   graphviz_ok=no
30   AC_MSG_WARN(graphviz not found)
31 fi
32
33 ])dnl
34 dnl