RE: Using windows text mode without setup.exe

2008-04-09 Thread David Dyck
On Wed, 9 Apr 2008 at 12:43 -0700, [EMAIL PROTECTED] wrote: Alternatively, if you don't want to go through your application fixing the file open calls, you can just link it against textmode.o, which will cause all your files to be opened in textmode by default. See also http://cygwin.com/ml

Re: Using windows text mode without setup.exe

2008-04-09 Thread Corinna Vinschen
On Apr 9 20:43, Dave Korn wrote: > David Dyck wrote on 09 April 2008 20:37: > > > On Wed, 9 Apr 2008 at 11:51 -0700, [EMAIL PROTECTED] wrote: > > > >> The application needs read from and write to files in > >> text mode (i.e. using CRLF format). This works fine on my development > >> mach

Re: Using windows text mode without setup.exe

2008-04-09 Thread Christopher Faylor
On Wed, Apr 09, 2008 at 02:51:36PM -0400, [EMAIL PROTECTED] wrote: >I am developing an application that links with the Cygwin dll (i.e. I >don't want people to have to have a Cygwin install on their computers). >The application needs read from and write to files in text mode (i.e. >using CRLF form

RE: Using windows text mode without setup.exe

2008-04-09 Thread Dave Korn
David Dyck wrote on 09 April 2008 20:37: > On Wed, 9 Apr 2008 at 11:51 -0700, [EMAIL PROTECTED] wrote: > >> The application needs read from and write to files in >> text mode (i.e. using CRLF format). This works fine on my development >> machine, because I can just use the Cygwin setup pro

Re: Using windows text mode without setup.exe

2008-04-09 Thread David Dyck
On Wed, 9 Apr 2008 at 11:51 -0700, [EMAIL PROTECTED] wrote: The application needs read from and write to files in text mode (i.e. using CRLF format). This works fine on my development machine, because I can just use the Cygwin setup program to specify the Windows text mode as default. Ho

Using windows text mode without setup.exe

2008-04-09 Thread mjumbe
Hello, I am developing an application that links with the Cygwin dll (i.e. I don't want people to have to have a Cygwin install on their computers). The application needs read from and write to files in text mode (i.e. using CRLF format). This works fine on my development machine, becau