[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Lzip-bug] lzd not working
From: |
Antonio Diaz Diaz |
Subject: |
Re: [Lzip-bug] lzd not working |
Date: |
Fri, 28 Mar 2014 01:58:36 +0100 |
User-agent: |
Mozilla/5.0 (X11; U; Linux i586; en-US; rv:1.7.11) Gecko/20050905 |
Rlyeh Mario wrote:
Aha, that was it : ) fixed
Im on windows 7 with visual studio 2013.
Then I guess the macro "__MSVCRT__" is not defined in your system.
Could you try "_MSC_VER" as in
#if defined(__MSVCRT__) || defined(__OS2__) || defined(_MSC_VER)
setmode( STDIN_FILENO, O_BINARY );
setmode( STDOUT_FILENO, O_BINARY );
#endif
Or do you know of any reliable macro for windows?
Best regards,
Antonio.