I am writing my own module testing library (using autoconf, automake and libtool) to better suit my needs (I do not need a super large number of functions, just a test runner and statements). I got to the point that it, apparently, can be used.
Of course, he uses config.h to figure out which headers to include. The problem is that I'm not sure where config.h should go, as it will easily run into another config.h project, and also because it is architecture dependent.
What should be my method to set this header? (This is necessary for all other headers)
autotools autoconf libtool automake
alternative
source share