The handcrafted Makefile.in contained the statements
38 if test "${RANLIB}" = 'ranlib'; then39 AC_DEFINE(RANDLIB)40 fi
The intention had been to define RANLIB, which the code tested for. Fortunately only 1 stretch of code. However, due to this error, that stretch of code never was compiled or executed. I have remedied the situation in my local branch autotools, but this warrants extra testing and reviewing once we get round to do the testing / reviewing.
I will leave this one open until we publish the relevant changes.
`
The handcrafted Makefile.in contained the statements
38 if test "${RANLIB}" = 'ranlib'; then
39 AC_DEFINE(RANDLIB)
40 fi
The intention had been to define RANLIB, which the code tested for. Fortunately only 1 stretch of code. However, due to this error, that stretch of code never was compiled or executed. I have remedied the situation in my local branch autotools, but this warrants extra testing and reviewing once we get round to do the testing / reviewing.
I will leave this one open until we publish the relevant changes. `