# HG changeset patch # User John W. Eaton # Date 1317736649 14400 # Node ID eae58f21710207f896bd8a2ed20e4eee90eaa711 # Parent b1882a8217abf3d9657f5f32cc7d0126688710a8 use correct macros to identify Cygwin and MinGW * profiler.cc (profile_data_accumulator::query_time): Use __CYGWIN__ and __MINGW__, not CYGWIN and MINGW. diff -r b1882a8217ab -r eae58f217102 src/profiler.cc --- a/src/profiler.cc Mon Oct 03 15:05:00 2011 -0400 +++ b/src/profiler.cc Tue Oct 04 09:57:29 2011 -0400 @@ -386,7 +386,7 @@ { octave_time now; // FIXME -- this should be removed at some point... See bug 34210. -#if defined (CYGWIN) || defined (MINGW) +#if defined (__CYGWIN__) || defined (__MINGW__) volatile #endif double dnow = now.double_value ();