From: <dat...@us...> - 2006-08-21 17:13:23
|
Revision: 16954 Author: datallah Date: 2006-08-21 10:13:16 -0700 (Mon, 21 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16954&view=rev Log Message: ----------- Newer versions of MinGW define "struct timezone" in <sys/time.h>, so we don't included it for wingaim (we don't use it anyway). Modified Paths: -------------- trunk/config.h.mingw trunk/libgaim/internal.h Modified: trunk/config.h.mingw =================================================================== --- trunk/config.h.mingw 2006-08-21 17:04:26 UTC (rev 16953) +++ trunk/config.h.mingw 2006-08-21 17:13:16 UTC (rev 16954) @@ -428,7 +428,7 @@ #define HAVE_SYS_STAT_H 1 /* Define to 1 if you have the <sys/time.h> header file. */ -#define HAVE_SYS_TIME_H 1 +/* #undef HAVE_SYS_TIME_H */ /* Define to 1 if you have the <sys/types.h> header file. */ #define HAVE_SYS_TYPES_H 1 @@ -550,9 +550,9 @@ /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be automatically deduced at run-time. - STACK_DIRECTION > 0 => grows toward higher addresses - STACK_DIRECTION < 0 => grows toward lower addresses - STACK_DIRECTION = 0 => direction of growth unknown */ + STACK_DIRECTION > 0 => grows toward higher addresses + STACK_DIRECTION < 0 => grows toward lower addresses + STACK_DIRECTION = 0 => direction of growth unknown */ /* #undef STACK_DIRECTION */ /* Loads static protocol plugin module initialization functions. */ Modified: trunk/libgaim/internal.h =================================================================== --- trunk/libgaim/internal.h 2006-08-21 17:04:26 UTC (rev 16953) +++ trunk/libgaim/internal.h 2006-08-21 17:13:16 UTC (rev 16954) @@ -70,9 +70,9 @@ #define BUF_LONG BUF_LEN * 2 #include <sys/stat.h> -#include <sys/time.h> #include <sys/types.h> #ifndef _WIN32 +#include <sys/time.h> #include <sys/wait.h> #endif #include <ctype.h> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |