vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| aac (not being default) seems to be broken on amd64 because of the timecounter framework. I think too, that i386 is heading this way. So... is this even sane? --- aacvar.h.orig Tue Mar 20 13:20:51 2007 +++ aacvar.h Tue Mar 20 13:23:05 2007 @@ -39,7 +39,14 @@ */ /* compatability */ +#ifdef __HAVE_TIMECOUNTER +#define time_second ( { \ + struct timeval now; \ + getmicrotime(&now); \ + now.tv_sec; } ) +#else #define time_second (mono_time.tv_sec) +#endif /* Debugging */ // #define AAC_DEBUG 0x0 |