|
From: hilare <hil...@ya...> - 2012-04-10 18:04:53
|
now answering to
--------------------------------------------
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
--------------------------------------------
The generated configure file becomes :
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 fi
20368
So the "else" condition is removed.
Trying then configure and make results in compilation ended fine.
Trying then this release/compilation of linuxsampler results in a succesful linuxsampler engine. |