<HTML><FONT FACE=arial,helvetica><FONT COLOR="#000000" FACE="Geneva" FAMILY="SANSSERIF" SIZE="2">Matt,<BR>
<BR>
You are correct.&nbsp;  I resolved this issue while I was also working through a couple of other issues and forgot to go back and dig deeper on this one.&nbsp;  Darwin does indeed have the proper time.h header where it is supposed to be.<BR>
<BR>
It turns out that my issue was that the structure "timeval" was not declared.&nbsp;  This results in the "rusage" structure (which uses timeval) in resource.h not behaving properly.&nbsp;  The "timeval" structure is declared in sys/time.h.&nbsp;  If I add a line in OsiClpSolverInterface.cpp everything works:<BR>
<BR>
#include &lt;time.h&gt;<BR>
#if defined(_MSC_VER)<BR>
// Turn off compiler warning about long names<BR>
#&nbsp;  pragma warning(disable:4786)<BR>
#else<BR>
#include &lt;sys/time.h&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  //&nbsp;  Add this line<BR>
#include &lt;sys/times.h&gt;<BR>
#include &lt;sys/resource.h&gt;<BR>
#include &lt;unistd.h&gt;<BR>
#endif<BR>
<BR>
Any suggestions on a better way to deal with this?<BR>
<BR>
Scott</FONT><FONT COLOR="#000000" FACE="Geneva" FAMILY="SANSSERIF" SIZE="2"></FONT></HTML>