diff options
author | Yang Tse <yangsita@gmail.com> | 2008-07-27 23:43:53 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-07-27 23:43:53 +0000 |
commit | cf37a2bed623ca4cf0975d847ef684e41cc9423a (patch) | |
tree | 03a2c66900543e13c6ff2aa66076e53d33a82a11 /configure.ac | |
parent | bf7a169de73ad8e93e8cc3bcaa371d6a299d0403 (diff) | |
download | c-ares-cf37a2bed623ca4cf0975d847ef684e41cc9423a.tar.gz c-ares-cf37a2bed623ca4cf0975d847ef684e41cc9423a.tar.bz2 c-ares-cf37a2bed623ca4cf0975d847ef684e41cc9423a.zip |
These lines were unintentionally removed in previous commit
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 96019ac..84ee735 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,7 @@ AC_PATH_PROG([SED], [sed], [not_found], if test -z "$SED" || test "$SED" = "not_found"; then AC_MSG_ERROR([sed not found in PATH. Cannot continue without sed.]) fi +AC_SUBST([SED]) dnl GREP is mandatory for configure process and libtool. 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 AC_MSG_ERROR([grep not found in PATH. Cannot continue without grep.]) fi +AC_SUBST([GREP]) dnl EGREP is mandatory for configure process and libtool. dnl Set it now, allowing it to be changed later. @@ -37,6 +39,7 @@ fi if test -z "$EGREP" || test "$EGREP" = "not_found"; then AC_MSG_ERROR([egrep not found in PATH. Cannot continue without egrep.]) fi +AC_SUBST([EGREP]) dnl AR is mandatory for configure process and libtool. 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 AC_MSG_ERROR([ar not found in PATH. Cannot continue without ar.]) fi +AC_SUBST([AR]) dnl Fetch c-ares version from ares_version.h VERSION=`$SED -ne 's/^#define ARES_VERSION_STR "\(.*\)"/\1/p' ${srcdir}/ares_version.h` |