*** empty log message ***

This commit is contained in:
Bryan THRALL
2001-10-16 20:56:46 +00:00
parent 2ce6cdd6b2
commit a203a1b127
5 changed files with 16 additions and 12 deletions

View File

@@ -180,8 +180,14 @@ using namespace osg;
_secsPerClick = (double)(cycleval)* 1e-12;
}
}
#elif defined (__APPLE_CC__) // MACOSX PJA
#include <Carbon/Carbon.h> // do I really have to link against the Carbon framework just for this?
#elif defined (__APPLE_CC__) || defined (macintosh)
#if defined (__APPLE_CC__)
#include <Carbon/Carbon.h> // do I really have to link against the Carbon framework just for this?
#else
#include <MacTypes.h>
#include <Timer.h>
#endif
Timer_t Timer::tick(void)
{