>>> "Markus" == Markus Werle <[EMAIL PROTECTED]> writes:
Markus> Hi! Markus> I have a problem with the latest autotools: Markus> From somewhere behind the scenes automake/autoconf Markus> decides to insert the following options to the compiler Markus> flags; -MT -MD -MP -MF depcomp adds these options, and ./configure makes the decision based on the compiler found (or that you specified). ./configure prints something like `checking dependency style of XXX' at this point. Markus> these are not recognized, say ignored ith annoying warnings by Markus> intel's C++ 7.0. Any idea how to remove these via Markus> configure.in or Makefile.am? Maybe your are not setting the compiler early enough? Since ./configure decides which flags to use it must know the compiler. Therefore you should run ./configure CC=mycc; make not ./configure; make CC=mycc -- Alexandre Duret-Lutz