[BACK]Return to configure.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / asir-doc

File: [local] / OpenXM / src / asir-doc / configure.in (download)

Revision 1.7, Thu Mar 25 05:56:49 2021 UTC (3 years, 1 month ago) by ohara
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +19 -6 lines

Now the build system uses texinfo 6.7 and texi2html 5.0.

dnl  $OpenXM: OpenXM/src/asir-doc/configure.in,v 1.7 2021/03/25 05:56:49 ohara Exp $
dnl  If you change this file, do not forget to run autoconf and rm .configure_done

AC_INIT
AC_PREREQ(2.61)
AC_PROG_CC

AC_PATH_PROG([MAKEINFO],[makeinfo],[no])
AC_PATH_PROG([TEXINDEX],[texindex],[no])
AC_PATH_PROG([TEXI2HTML],[texi2html],[no])
if test "$MAKEINFO" = no -o "$TEXINDEX" = no; then
    AC_MSG_ERROR([makeinfo is not found.])
fi
if test "$TEXI2HTML" = no ; then
    AC_MSG_ERROR([texi2html is not found.])
fi
AC_PATH_PROG([PTEX],[xetex],[no])
AC_PATH_PROG([TEX],[xetex],[no])
if test "$PTEX" = no -o "$TEX" = no ; then
    AC_MSG_ERROR([xetex is not found.])
fi

OpenXM_HOME=`cd ../..; pwd`
AC_SUBST([MAKEINFO])
AC_SUBST([TEXINDEX])
AC_SUBST([TEXI2HTML])
AC_SUBST([PTEX])
AC_SUBST([TEX])
AC_SUBST([OpenXM_HOME])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT