Turn off autodependencies on cygwin to fix building on cygwin

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@28744 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2009-09-27 09:09:54 +00:00
parent 12d2b6d9b8
commit d0b27be8cc
3 changed files with 3240 additions and 2491 deletions

View file

@ -1,3 +1,8 @@
2009-09-27 Nicola Pero <nicola.pero@meta-innovation.com>
* configure.ac: Turn off autodependencies on cygwin.
* configure: Regenerated.
2009-09-20 Nicola Pero <nicola.pero@meta-innovation.com>
* configure.ac (--enable-debug-by-default): New option which

5716
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -1383,10 +1383,16 @@ fi
AC_MSG_CHECKING(if the compiler supports autodependencies)
# What we want to do: set AUTO_DEPENDENCIES to yes if gcc => 3.x
# What we want to do: set AUTO_DEPENDENCIES to yes if gcc => 3.x. As
# an exception, we disabled them on cygwin because the compiler
# generates autodependencies files containing filenames such as
# G:/GNUstep/mingw/include/stdlib.h which can't really work with GNU
# make because of the ':'.
AUTO_DEPENDENCIES=""
if test ! ${GCC} = "yes" ; then
if test "$CYGWIN" = yes; then
AC_MSG_RESULT(no: autodependencies do not work on cygwin)
elif test ! ${GCC} = "yes" ; then
AC_MSG_RESULT(no: it's not gcc)
else
if test "${gs_cv_gcc_major_version}" -ge "3" >&5 2>&5; then