fix win32 gettimeofday for mingw 50/3150/1
authorArokux B <arokux@gmail.com>
Thu, 28 Feb 2013 01:18:38 +0000 (09:18 +0800)
committerKevron Rees <kevron_m_rees@linux.intel.com>
Thu, 7 Mar 2013 21:01:38 +0000 (13:01 -0800)
commit38d645113bbb9e3143bc91285c80ad68506a5e7c
treebc72dffc0ebf8809d8ae87dda56daa6a112b1f0b
parent72dee06540caa0ccdff89bef1b405366f08e9b73
fix win32 gettimeofday for mingw

here are the problems that I found while compiling libwebsockets with
CMake using as a generator MinGW Makefiles.

1. In http://git.warmcat.com/cgi-bin/cgit/libwebsockets/plain/win32port/win32helpers/gettimeofday.c

Remove spaces around time.h, otherwise it looks for " time.h " and
fails with "No such file ..."

I also needed to comment out

struct timezone
{
  int  tz_minuteswest; /* minutes W of Greenwich */
  int  tz_dsttime;     /* type of dst correction */
};

It is already declared in mingw's time.h

Signed-off-by: Arokux B <arokux@gmail.com>
win32port/win32helpers/gettimeofday.c