diff -Naur polygraph-2.5.4/src/xstd/xport.cc polygraph-2.5.4-new/src/xstd/xport.cc --- polygraph-2.5.4/src/xstd/xport.cc Sat Jun 24 12:56:39 2000 +++ polygraph-2.5.4-new/src/xstd/xport.cc Thu Feb 22 14:25:01 2001 @@ -33,9 +33,7 @@ time_t fake_timegm(struct tm *t) { const time_t res = mktime(t); -#if defined(HAVE_ALTZONE) - return res - altzone; // Solaris -#elif defined(HAVE_TM_GMTOFF) +#if defined(HAVE_TM_GMTOFF) const struct tm *local = localtime(&res); return res + local->tm_gmtoff; #elif defined(HAVE_TIMEZONE)