2006-05-30 Yoshinori K. Okuji <okuji@enbug.org>

* configure.ac (CMP): Check if cmp is available explicitly.
This commit is contained in:
okuji 2006-05-30 00:32:29 +00:00
parent b977bf01b3
commit 6c82634884
3 changed files with 64 additions and 4 deletions

View file

@ -88,9 +88,16 @@ AC_SUBST(platform)
# Checks for build programs.
#
# Although cmp is listed in the GNU Coding Standards as a command which
# can used directly, OpenBSD lacks cmp in the default installation.
AC_CHECK_PROGS([CMP], [cmp])
if test "x$CMP" = x; then
AC_MSG_ERROR([cmp is not found])
fi
AC_CHECK_PROGS([YACC], [bison])
if test "x$YACC" = x; then
AC_MSG_ERROR([Could not find bison.])
AC_MSG_ERROR([bison is not found])
fi
AC_PROG_INSTALL