Say in configure.acI am checking for the presence of a C function, e.g.
AC_CHECK_FUNCS( [arc4random] )
And later, the configure process is positive for this function:
checking for arc4random... yes
What actually starts the setup process (say, on a Linux system)? Does it contain an example program and try to compile it?
source
share