With a fresh source checkout, it's not possible to build out-of-source because src/include/spf_lib_version.h is generated in-source, giving errors of the form
make[4]: *** No rule to make target 'spf_lib_version.h', needed by 'all-am'. Stop.
I have adjusted the path of the generated file by prepending the autoconfpreset output variablesrcdir so that the configure script generates spf_lib_version.h in the proper place.
With a fresh source checkout, it's not possible to build out-of-source because
src/include/spf_lib_version.h
is generated in-source, giving errors of the formI have adjusted the path of the generated file by prepending the
autoconf
preset output variablesrcdir
so that theconfigure
script generatesspf_lib_version.h
in the proper place.