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

This commit is contained in:
David G. Holm
1999-06-19 02:04:12 +00:00
parent dedcb60ae4
commit 6db0f5a0ff
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
19990618-20:55 EDT David G. Holm <dholm@jsd-llc.com>
* source/rtl/dir.c
- Corrected #if test GNU C on Unix/Linux test to use && ! instead of || !
in order to force DJGPP to use DOS functions instead of Unix functions
19990619-00:52 Ryszard Glab <rglab@imid.med.pl>
* config/linux/gcc.cf

View File

@@ -262,7 +262,7 @@ HARBOUR HB_DIRECTORY( void )
while(0==getchar());
*/
#if defined(__GNUC__) || !defined(__DJGPP__)
#if defined(__GNUC__) && !defined(__DJGPP__)
/* GNU C on Linux or on other UNIX */
aatrib[ 0 ] = '\0';
if( S_ISREG(statbuf.st_mode) )