Changeset 2174
- Timestamp:
- Dec 23, 2012, 10:33:21 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r2167 r2174 126 126 fi 127 127 fi 128 AC_PATH_PROG(DOT, dot, no) 129 if test "${DOT}" != "no"; then 130 AC_MSG_RESULT(yes) 131 USE_DOT="YES" 132 else 133 USE_DOT="NO" 134 fi 128 135 fi 129 136 fi 130 137 AM_CONDITIONAL(BUILD_DOCUMENTATION, test "${DOXYGEN}" != "no") 131 138 AM_CONDITIONAL(USE_LATEX, test "${LATEX}" != "no") 139 AM_CONDITIONAL(USE_DOT, test "${DOT}" != "no") 132 140 133 141 dnl No exceptions … … 412 420 AC_SUBST(LOL_LIBS) 413 421 422 AC_SUBST(USE_DOT) 414 423 415 424 AC_CONFIG_FILES( -
trunk/doc/doxygen.cfg.in
r2169 r2174 1360 1360 # or is not a class. 1361 1361 1362 HIDE_UNDOC_RELATIONS = YES1362 HIDE_UNDOC_RELATIONS = NO 1363 1363 1364 1364 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is … … 1367 1367 # have no effect if this option is set to NO (the default) 1368 1368 1369 HAVE_DOT = NO1369 HAVE_DOT = @USE_DOT@ 1370 1370 1371 1371 # By default doxygen will write a font called FreeSans.ttf to the output … … 1473 1473 # found. If left blank, it is assumed the dot tool can be found in the path. 1474 1474 1475 DOT_PATH = 1475 DOT_PATH = @DOT@ 1476 1476 1477 1477 # The DOTFILE_DIRS tag can be used to specify one or more directories that
Note: See TracChangeset
for help on using the changeset viewer.