From: Stefano Lattarini Date: Wed, 7 Mar 2012 07:20:26 +0000 (+0100) Subject: Merge branch 'maint' into msvc X-Git-Tag: v1.11.3b~11^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=24ab98457ee12a58dc070a3748cf3fd56f1c4c18;p=platform%2Fupstream%2Fautomake.git Merge branch 'maint' into msvc * maint: news: describe recently-fixed bug in vala support depcomp: add support for IBM xlc/xlC compilers --- 24ab98457ee12a58dc070a3748cf3fd56f1c4c18 diff --cc lib/depcomp index 2c30282,0122c04..58fe52c --- a/lib/depcomp +++ b/lib/depcomp @@@ -100,14 -94,12 +100,20 @@@ if test "$depmode" = msvcmsys; the depmode=msvisualcpp fi +if test "$depmode" = msvc7msys; then + # This is just like msvc7 but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvc7 +fi + + if test "$depmode" = xlc; then + # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency informations. + gccflag=-qmakedep=gcc,-MF + depmode=gcc + fi + case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what