On Mon, 8 Mar 2004, Sabine 'Sani' Schulz wrote:
>checking for a good enough C++ compiler... ./configure: line 3666: -c: command not
>found
>gcc: installation problem, cannot exec `cc1plus': No such file or directory
>./configure: line 3666: -c: command not found
I don't understand german (if that's what you're speaking) but from the
errors it looks like environment variable CC is defined but empty. Try
giving first commands
CC="gcc"
CXX="g++"
export CC CXX
and then running configure again (better to remove first config.cache).