[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: colorgcc: colorgcc screws up configure (was: Re: I think I'm going mad ...)



hi Cristian,
 
> Now I found it!!! The problem seems to be COLORGCC.
> 
> It looks like configure (which uses gcc to do it's tests) can't cope
> with colorgcc (which is a gcc wrapper) or colorgcc is screwing up. 
hm, I'm using colorgcc successful with my automake/autoconf environemtns.
Take a look on my configure.in...

AC_ARG_WITH(colorgcc,
  [  --with-colorgcc=        use ColorGCC script for colorising GCC compiler output (default yes)],
  colorgcc=`echo $withval|tr [A-Z] [a-z]`, colorgcc="yes")
if test "$colorgcc" = "yes" -o "$colorgcc" = "on"; then
  AC_PATH_PROG(COLORGCC,colorgcc)
  if test "$COLORGCC"; then
    CC="$COLORGCC"
    CXX="$COLORGCC"
  else
    echo "***"
    echo "***  Missing ColorGCC script for GCC output colorisation!"
    echo "***  To enable ColorGCC colorisation install the colorgcc"
    echo "***  package provided by your distribution or install the"
    echo "***  latest application from http://home.i1.net/~jamoyers/software/";
    echo "***"
    exit 1
  fi
fi

Please send me your configure.in or better the project, so I can reproduce
it here!

-- 
Raphael Bossek <raphael.bossek@solutions4linux.de> [ICQ #40047651]



Reply to: