-
Benoît Sagot authored
git-svn-id: https://scm.gforge.inria.fr/authscm/cfourrie/svn/lingwb/MElt/trunk@5689 dc05b511-7f1d-0410-9f1c-d6f32a2df9e4
Benoît Sagot authoredgit-svn-id: https://scm.gforge.inria.fr/authscm/cfourrie/svn/lingwb/MElt/trunk@5689 dc05b511-7f1d-0410-9f1c-d6f32a2df9e4
configure.ac 692 B
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(MElt, 2.0b12, Benoit.Sagot@inria.fr and Pascal.Denis@inria.fr)
AM_INIT_AUTOMAKE
# Checks for programs.
AM_PATH_PYTHON
AC_PATH_PROG(PERL, perl)
if test "x$PERL" = x; then
AC_MSG_ERROR(perl not found)
fi
# Check for presence of pdfLaTeX
AC_CHECK_PROG(PDFLATEX, pdflatex, pdflatex)
if test -z "$PDFLATEX"; then
AC_MSG_WARN([Unable to create PDF version of the user manual.])
fi
AM_CONDITIONAL([HAVE_PDFLATEX], test -n "$PDFLATEX")
AC_CONFIG_FILES( bin/Makefile
models/Makefile
pkgpythonlib/Makefile
sxpipe-melt/Makefile
normalisation/Makefile
doc/Makefile
Makefile
)
AC_OUTPUT