Karel Kulhavy <[EMAIL PROTECTED]> writes: > > # configure: error: conditional "am__fastdepCXX" was never defined. > # Usually this means the macro was only invoked conditionally.
Automake appends an AM_CONDITIONAL to AC_PROG_CXX, and is then unhappy when it's expanded but not actually executed. You can avoid the problem by adding "no-dependencies" to AM_INIT_AUTOMAKE, if you don't mind losing the automated dependency tracking. Perhaps there's a better way, but this was enough for me.
