From 660d996dbf069a47d802ab20f02efa11168e42a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sun, 13 Nov 2011 10:16:40 -0800 Subject: [PATCH] set compile-et to no if its not found, try to not use it --- cf/check-compile-et.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cf/check-compile-et.m4 b/cf/check-compile-et.m4 index 305c65d87..56a9f7418 100644 --- a/cf/check-compile-et.m4 +++ b/cf/check-compile-et.m4 @@ -3,12 +3,12 @@ dnl dnl CHECK_COMPILE_ET AC_DEFUN([CHECK_COMPILE_ET], [ -AC_CHECK_PROG(COMPILE_ET, compile_et, [compile_et]) +AC_CHECK_PROG(COMPILE_ET, compile_et, [compile_et], [no]) krb_cv_compile_et="no" krb_cv_com_err_need_r="" krb_cv_compile_et_cross=no -if test "${COMPILE_ET}" = "compile_et"; then +if test "${COMPILE_ET}" != "no"; then dnl We have compile_et. Now let's see if it supports `prefix' and `index'. AC_MSG_CHECKING(whether compile_et has the features we need)