Changeset 957 for trunk/configure.ac
- Timestamp:
- Oct 9, 2007, 10:07:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r955 r957 46 46 AC_PROG_CXX 47 47 AC_PROG_INSTALL 48 AC_CHECK_PROG([ DOXYGEN], [doxygen], [yes], [no])49 AC_CHECK_PROG([ DVIPDFM], [dvipdfm], [yes], [no])50 AC_CHECK_PROG([ LATEX], [latex], [yes], [no])51 AC_CHECK_PROG([ LATEX2HTML], [latex2html], [yes], [no])48 AC_CHECK_PROG([HAVE_DOXYGEN], [doxygen], [true], [false]) 49 AC_CHECK_PROG([HAVE_DVIPDFM], [dvipdfm], [true], [false]) 50 AC_CHECK_PROG([HAVE_LATEX], [latex], [true], [false]) 51 AC_CHECK_PROG([HAVE_LATEX2HTML], [latex2html], [true], [false]) 52 52 53 53 # Checks for libraries. … … 144 144 # when in debug mode 145 145 if (test "$enable_debug" == "yes"); then 146 if (test "$ DOXYGEN" != "yes") ; then146 if (test "$HAVE_DOXYGEN" != "true") ; then 147 147 AC_MSG_WARN([Doxygen was not found. Yat will compile and work 148 148 without doxygen. However, in order to enable … … 150 150 available at http://www.doxygen.org/]) 151 151 fi 152 if (test "$ LATEX" != "yes") ; then152 if (test "$HAVE_LATEX" != "true") ; then 153 153 AC_MSG_WARN([latex was not found. Yat will compile and work 154 154 without latex. However, supporting documentation on … … 156 156 latex.]) 157 157 fi 158 if (test "$ DVIPDFM" != "yes") ; then158 if (test "$HAVE_DVIPDFM" != "true") ; then 159 159 AC_MSG_WARN([dvipdfm was not found. Yat will compile and work 160 160 without dvipdfm. However, pdf document on statistics 161 161 used in yat cannot be generated without dvipdfm.]) 162 162 fi 163 if (test "$ LATEX2HTML" != "yes") ; then163 if (test "$HAVE_LATEX2HTML" != "true") ; then 164 164 AC_MSG_WARN([latex2html was not found. Yat will compile and work 165 165 without Latex. However, html document on statistics
Note: See TracChangeset
for help on using the changeset viewer.