On Fri, 18 Aug 2006, Rhys Morris wrote:
configure:8162: checking ctl.h presence configure:8173: conftest.c ./configure: line 1: conftest.c: command not found
This error line tells you exactly what to look for. It's trying to run the preprocessor conftest.c, but somehow it has a blank for the preprocessor command name.
The likeliest explanation is that you have set the CPP environment variable to a blank, and sure enough, if you look at the end of the file:
CPP=''
unsetenv CPP and try again. _______________________________________________ mpb-discuss mailing list [email protected] http://ab-initio.mit.edu/cgi-bin/mailman/listinfo/mpb-discuss
