On Fri, Oct 04, 2002 at 01:09:22PM -0000, ftpbench@yahoogroups.com wrote:
> ________________________________________________________________________
>
> Message: 2
> Date: Thu, 03 Oct 2002 15:54:56 -0400
> From: Kenneth Eaton <keaton@...>
> Subject: compile error
>
> Upon attempting to compile the program I receive the below output and
> error. Can anyone help out?
I had the same error with Debian Woody v3.0r1, gcc-2.95 was version
2.95.4-11woody1 and g++-2.95 was version 2.95.4-11woody1
I installed gcc-3.0 and g++3.0 with apt-get install gcc-3.0 g++3.0,
then typed:
make clean
export CC=gcc-3.0
export CXX=g++-3.0
./configure
make
and got a clean compile.
With Debian, I can have both versions 2.95 and 3.0 of gcc/g++ installed,
and switch between them with the export command.
-yoshio