From 847e80dee9c405f021c67d5ffb09804751ea2be7 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 24 Apr 2006 22:50:19 +0000 Subject: r15224: Check whether -MT is actually supported by the compiler before using automatic dependencies (This used to be commit 6598efc6b302984d0b26b0c76a4b7107f5feba21) --- source4/build/m4/check_cc.m4 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/build/m4/check_cc.m4') diff --git a/source4/build/m4/check_cc.m4 b/source4/build/m4/check_cc.m4 index 99e6bd5d23..6823237805 100644 --- a/source4/build/m4/check_cc.m4 +++ b/source4/build/m4/check_cc.m4 @@ -216,11 +216,12 @@ if test "x$GNU_MAKE" = x"yes"; then AC_SUBST(GNU_MAKE_VERSION) fi + automatic_dependencies=no AC_MSG_CHECKING([for GNU make >= 3.81]) if test x$GNU_MAKE = x"yes"; then if $PERL -e " \$_ = '$GNU_MAKE_VERSION'; s/@<:@^\d\.@:>@.*//g; exit (\$_ < 3.81);"; then - automatic_dependencies=yes + AX_CXXFLAGS_GCC_OPTION(-MT, [], [automatic_dependencies=yes], []) fi fi AC_MSG_RESULT($automatic_dependencies) -- cgit