[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Lzip-bug] Re: Version 1.11-rc2 of lzip released
From: |
Elbert Pol |
Subject: |
Re: [Lzip-bug] Re: Version 1.11-rc2 of lzip released |
Date: |
Mon, 02 Aug 2010 21:07:28 +0200 |
User-agent: |
Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.9.2.7) Gecko/20100714 Thunderbird/3.1.1 |
On 2-08-10 17:27, Antonio Diaz Diaz wrote:
JonY wrote:
This only applies to the older Cygwin 1.5, I think. Cygwin 1.7 now
uses binary IO only, text mode was dropped.
Great! Another step towards the disappearance of text mode.
Anyway, Cygwin versions builds and passes the test without any
changes. I tested with lzip-1.11-rc3-20100729.
Thanks. So this means lzip only need to be modified for native Windows
mode?
Elbert Pol wrote:
Your also going to have to include io.h to pull in the setmode(),
then the tests pass.
The makefiles, configure and check.sh also need exeext added to
properly support OS/2 and Windows.
Thanks. Those are too many changes just to work around bugs and
shortcomings of two proprietary, non-posix OSs.
As my commitment is to provide high quality software for free posix
systems, I hope you both will be so kind to patch lzip for your
respective systems until those systems implement posix compatibility.
Hi Antonio,
Is seems i had the wrong place adding it :(
But now set @ :
@@ -643,6 +644,11 @@
int main( const int argc, const char * const argv[] )
{
+ #if defined(__OS2__) || defined(__CYGWIN__)
+ setmode( STDIN_FILENO, O_BINARY );
+ setmode( STDOUT_FILENO, O_BINARY );
+ #endif
+
// Mapping from gzip/bzip2 style 1..9 compression modes
// to the corresponding LZMA compression modes.
const Lzma_options option_mapping[] =
BTW: using __EMX__ Also works
Just OS2 or EMX don't work
Now lzip is passing the test :PP
Best regards,
Antonio.
_______________________________________________
Lzip-bug mailing list
address@hidden
http://lists.nongnu.org/mailman/listinfo/lzip-bug
- Re: [Lzip-bug] Re: Version 1.11-rc2 of lzip released, Elbert Pol, 2010/08/01
- Re: [Lzip-bug] Re: Version 1.11-rc2 of lzip released, JonY, 2010/08/01
- Re: [Lzip-bug] Re: Version 1.11-rc2 of lzip released, Antonio Diaz Diaz, 2010/08/01
- Re: [Lzip-bug] Re: Version 1.11-rc2 of lzip released, JonY, 2010/08/01
- Re: [Lzip-bug] Re: Version 1.11-rc2 of lzip released, Elbert Pol, 2010/08/02
- Re: [Lzip-bug] Re: Version 1.11-rc2 of lzip released, Antonio Diaz Diaz, 2010/08/02
- Re: [Lzip-bug] Re: Version 1.11-rc2 of lzip released,
Elbert Pol <=
- Re: [Lzip-bug] Re: Version 1.11-rc2 of lzip released, JonY, 2010/08/02
- Re: [Lzip-bug] Re: Version 1.11-rc2 of lzip released, Antonio Diaz Diaz, 2010/08/03
- Message not available
- Message not available
- Message not available
- Message not available
- Message not available
- Message not available
- Message not available
- Message not available
- Message not available
- [Lzip-bug] Re: Version 1.11-rc4 of lzip released, Elbert Pol, 2010/08/09
- [Lzip-bug] Re: Version 1.11-rc4 of lzip released, Antonio Diaz Diaz, 2010/08/10
- [Lzip-bug] Re: Version 1.11-rc4 of lzip released, JonY, 2010/08/10
- [Lzip-bug] Re: Version 1.11-rc4 of lzip released, Antonio Diaz Diaz, 2010/08/10
- [Lzip-bug] Re: Version 1.11-rc4 of lzip released, JonY, 2010/08/11
- [Lzip-bug] Re: Version 1.11-rc4 of lzip released, Tilman Hausherr, 2010/08/10
- [Lzip-bug] Re: Version 1.11-rc4 of lzip released, JonY, 2010/08/10