These lines were unintentionally removed in previous commit

This commit is contained in:
Yang Tse 2008-07-27 23:43:53 +00:00
parent d2661cb4b2
commit 817efbc29c
2 changed files with 8 additions and 0 deletions

View File

@ -15,6 +15,7 @@ AC_PATH_PROG([SED], [sed], [not_found],
if test -z "$SED" || test "$SED" = "not_found"; then if test -z "$SED" || test "$SED" = "not_found"; then
AC_MSG_ERROR([sed not found in PATH. Cannot continue without sed.]) AC_MSG_ERROR([sed not found in PATH. Cannot continue without sed.])
fi fi
AC_SUBST([SED])
dnl GREP is mandatory for configure process and libtool. dnl GREP is mandatory for configure process and libtool.
dnl Set it now, allowing it to be changed later. dnl Set it now, allowing it to be changed later.
@ -23,6 +24,7 @@ AC_PATH_PROG([GREP], [grep], [not_found],
if test -z "$GREP" || test "$GREP" = "not_found"; then if test -z "$GREP" || test "$GREP" = "not_found"; then
AC_MSG_ERROR([grep not found in PATH. Cannot continue without grep.]) AC_MSG_ERROR([grep not found in PATH. Cannot continue without grep.])
fi fi
AC_SUBST([GREP])
dnl EGREP is mandatory for configure process and libtool. dnl EGREP is mandatory for configure process and libtool.
dnl Set it now, allowing it to be changed later. dnl Set it now, allowing it to be changed later.
@ -37,6 +39,7 @@ fi
if test -z "$EGREP" || test "$EGREP" = "not_found"; then if test -z "$EGREP" || test "$EGREP" = "not_found"; then
AC_MSG_ERROR([egrep not found in PATH. Cannot continue without egrep.]) AC_MSG_ERROR([egrep not found in PATH. Cannot continue without egrep.])
fi fi
AC_SUBST([EGREP])
dnl AR is mandatory for configure process and libtool. dnl AR is mandatory for configure process and libtool.
dnl This is target dependant, so check it as a tool. dnl This is target dependant, so check it as a tool.
@ -45,6 +48,7 @@ AC_PATH_TOOL([AR], [ar], [not_found],
if test -z "$AR" || test "$AR" = "not_found"; then if test -z "$AR" || test "$AR" = "not_found"; then
AC_MSG_ERROR([ar not found in PATH. Cannot continue without ar.]) AC_MSG_ERROR([ar not found in PATH. Cannot continue without ar.])
fi fi
AC_SUBST([AR])
dnl Fetch c-ares version from ares_version.h dnl Fetch c-ares version from ares_version.h
VERSION=`$SED -ne 's/^#define ARES_VERSION_STR "\(.*\)"/\1/p' ${srcdir}/ares_version.h` VERSION=`$SED -ne 's/^#define ARES_VERSION_STR "\(.*\)"/\1/p' ${srcdir}/ares_version.h`

View File

@ -43,6 +43,7 @@ AC_PATH_PROG([SED], [sed], [not_found],
if test -z "$SED" || test "$SED" = "not_found"; then if test -z "$SED" || test "$SED" = "not_found"; then
AC_MSG_ERROR([sed not found in PATH. Cannot continue without sed.]) AC_MSG_ERROR([sed not found in PATH. Cannot continue without sed.])
fi fi
AC_SUBST([SED])
dnl GREP is mandatory for configure process and libtool. dnl GREP is mandatory for configure process and libtool.
dnl Set it now, allowing it to be changed later. dnl Set it now, allowing it to be changed later.
@ -51,6 +52,7 @@ AC_PATH_PROG([GREP], [grep], [not_found],
if test -z "$GREP" || test "$GREP" = "not_found"; then if test -z "$GREP" || test "$GREP" = "not_found"; then
AC_MSG_ERROR([grep not found in PATH. Cannot continue without grep.]) AC_MSG_ERROR([grep not found in PATH. Cannot continue without grep.])
fi fi
AC_SUBST([GREP])
dnl EGREP is mandatory for configure process and libtool. dnl EGREP is mandatory for configure process and libtool.
dnl Set it now, allowing it to be changed later. dnl Set it now, allowing it to be changed later.
@ -65,6 +67,7 @@ fi
if test -z "$EGREP" || test "$EGREP" = "not_found"; then if test -z "$EGREP" || test "$EGREP" = "not_found"; then
AC_MSG_ERROR([egrep not found in PATH. Cannot continue without egrep.]) AC_MSG_ERROR([egrep not found in PATH. Cannot continue without egrep.])
fi fi
AC_SUBST([EGREP])
dnl AR is mandatory for configure process and libtool. dnl AR is mandatory for configure process and libtool.
dnl This is target dependant, so check it as a tool. dnl This is target dependant, so check it as a tool.
@ -73,6 +76,7 @@ AC_PATH_TOOL([AR], [ar], [not_found],
if test -z "$AR" || test "$AR" = "not_found"; then if test -z "$AR" || test "$AR" = "not_found"; then
AC_MSG_ERROR([ar not found in PATH. Cannot continue without ar.]) AC_MSG_ERROR([ar not found in PATH. Cannot continue without ar.])
fi fi
AC_SUBST([AR])
AC_SUBST(libext) AC_SUBST(libext)