<html><body><div style="color:#000; background-color:#fff; font-family:arial, helvetica, sans-serif;font-size:12pt"><div>I'm still attempting to cross-compile Wine to ARM and I'm running into many compile errors right off the bat.  I have tracked these down to the lack of HAVE_xxx in the config.h file generated from configure script.</div><div><br></div><div>Many of the functions being checked from this list fail when they are compiled by  ac_fn_c_check_func ()<br></div><div><br></div><div>for ac_func in \<br>    _finite \<br>    _isnan \<br>    _pclose \<br>    _popen \<br></div><div>...<br></div><div>     snprintf \<br>    spawnvp \<br>    statfs \<br>    statvfs \<br>    strcasecmp \<br>    strdup \<br>    strerror \<br></div><div><br></div><div>One example of a failure is
 strerror which does not compile because it is missing one argument</div><div><br></div><div>conftest.c:165: error: too few arguments to function 'strerror'<br></div><div><br></div><div>The code that generates conftest.c does not provide for an argument to strerror.   Why doesn't it?  And how does the configure script succeed when compiling for x86?<br></div><div><br></div><div>int<br>main ()<br>{<br>return $2 ();<br>  ;<br>  return 0;<br>}</div><div><br></div><div>Thanks in advance</div><div><br></div><div>Roger R. Cruz<br></div><div><br></div></div></body></html>