See ChangeLog entry 19990910-14:20 EDT David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
1999-09-10 18:34:31 +00:00
parent 9f502607b3
commit edfb9e0d34
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
19990910-14:20 EDT David G. Holm <dholm@jsd-llc.com>
* source/rtl/console.c
! Uncommented two calls to hb_fsSetDevMode() in hb_consoleInitialize()
which force the stdout and stderr handles to binary mode for Clipper
compatibility. There was no explanation in the ChangeLog as to why
the two calls had been commented out.
19990910-14:15 EDT David G. Holm <dholm@jsd-llc.com>
* tests/working/Makefile
! Moved statinit.prg to BAD_PRG_SOURCES, because it won't link.

View File

@@ -108,8 +108,8 @@ void hb_consoleInitialize( void )
/* Some compilers open stdout and stderr in text mode, but
Harbour needs them to be open in binary mode. */
// hb_fsSetDevMode( fileno( stdout ), FM_BINARY );
// hb_fsSetDevMode( fileno( stderr ), FM_BINARY );
hb_fsSetDevMode( fileno( stdout ), FM_BINARY );
hb_fsSetDevMode( fileno( stderr ), FM_BINARY );
#ifdef HARBOUR_USE_GTAPI
hb_gtInit();