>[EMAIL PROTECTED] writes:
...
>> Further, I would like configure the complain when it can't
>> find the library.
You can use AC_MSG_ERROR to complain, like this:
AC_PATH_PROG(bash, bash, FAIL)
if test "$bash" = "FAIL"; then
AC_MSG_ERROR(Cannot continue: bash not found)
fi
or this:
AC_CHECK_LIB(mpich,MPI_Init,,AC_MSG_ERROR(no mpich library))
- Jim Van Zandt
**********************************************************
To unsubscribe from this list, send mail to
[EMAIL PROTECTED] with the following text in the
*body* (*not* the subject line) of the letter:
unsubscribe gnhlug
**********************************************************