2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-29 13:28:14 +00:00

Add error when ar is not found (from bind9 configure)

This commit is contained in:
Francis Dupont 2016-01-27 12:58:58 +01:00
parent e619bd678c
commit 5965f335c7

View File

@ -52,6 +52,12 @@ AC_PROG_RANLIB
AC_PATH_PROG(AR, ar) AC_PATH_PROG(AR, ar)
AC_SUBST(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]) AC_CONFIG_HEADERS([includes/config.h])
# we sometimes need to know byte order for building packets # we sometimes need to know byte order for building packets