From: Francis Dupont Date: Wed, 27 Jan 2016 11:58:58 +0000 (+0100) Subject: Add error when ar is not found (from bind9 configure) X-Git-Tag: v4_3_4~34^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5965f335c7c3f1a58b07912c20fb88c71cf48425;p=thirdparty%2Fdhcp.git Add error when ar is not found (from bind9 configure) --- diff --git a/configure.ac b/configure.ac index 64007f7d2..30f9ef0aa 100644 --- a/configure.ac +++ b/configure.ac @@ -52,6 +52,12 @@ AC_PROG_RANLIB AC_PATH_PROG(AR, ar) AC_SUBST(AR) +if test "X$AR" = "X"; then + AC_MSG_ERROR([ +ar program not found. Please fix your PATH to include the directory in +which ar resides, or set AR in the environment with the full path to ar.]) +fi + AC_CONFIG_HEADERS([includes/config.h]) # we sometimes need to know byte order for building packets