|
From: Andreas P. <and...@br...> - 2012-04-10 16:39:24
|
On 2012-04-10 02:09, hilare wrote:
> Looking at /configure file, this what i found around the lines the
> compiler complains about:
>
> 20363 config_pthread_testcancel="$mac"
> 20364 # Check whether --enable-pthread-testcancel was given.
> 20365 if test "${enable_pthread_testcancel+set}" = set; then
> 20366 enableval=$enable_pthread_testcancel;
> config_pthread_testcancel="$enableval"
> 20367 else
> 20368
> 20369
> 20370 fi
> 20371
>
>
> So the compiler is right, the "else" is empty ;-)
What happens if you change these lines in configure.in:
[config_pthread_testcancel="$enableval"],
[]
)
to
[config_pthread_testcancel="$enableval"],
[])
that is, remove the line break before the closing parenthesis?
And then rerun from "make -f Makefile.cvs"?
/Andreas
|