[zeromq-dev] CZMQ selftest build fails.

2015-01-07 Thread Riskybiz
Finally I'm able to get CZMQ to build on Windows 7 using the Visual Studio 2013 solution. However there are a couple of issues; Without this section commented out of czmq_prelude.h then the build gave many errors relating to int8_t redefinition. N.B. This computer has Mingw installed if that

Re: [zeromq-dev] CZMQ selftest build fails.

2015-01-07 Thread Pieter Hintjens
I believe this condition is bogus: || (defined (__MINGW32__) defined (__IS_64BIT__)) \ Try removing it. On Wed, Jan 7, 2015 at 11:48 AM, Riskybiz riskybizl...@live.com wrote: Finally I’m able to get CZMQ to build on Windows 7 using the Visual Studio 2013 solution. However there are a

Re: [zeromq-dev] CZMQ selftest build fails.

2015-01-07 Thread KIU Shueng Chuan
By the way, the reason such defines appear is to attempt to distinguish between mingw32 and mingw64. Both define __MINGW32__ but unfortunately their implementation differs slightly usually in the header files. Sometimes people patch the code to work with mingw64 but that breaks mingw32 (and vice