Hello. I see many discrepancies in config.h file generated by CMake and autoheader.<br><br>Most of them are following:<br>In autofoo-generated config:<br><blockquote style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote">
/* Define to 1 if you have the `<name>' function. */<br>#define HAVE_<name> 1<br></blockquote>but in CMake-generated:<br><blockquote style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote">
#undef HAVE_<name><br></blockquote>This happens because in config.h.cmake (<a href="http://config.h.in">config.h.in</a> analog) these functions just are not checked for.<br><br>Another difference:<br>autofoo sets this by default:<br>
<blockquote style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote">#define ENABLE_PIC 1<br></blockquote>while CMake not.<br><br>There are many other differencies, which bother me, so here is the question: is it harmless and if not - should i try to fix it?<br>