ChangeLogTag:Wed Jul 28 11:54:06 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>

This commit is contained in:
Gonzalo A. Diethelm
1999-07-28 16:02:42 +00:00
parent 815167ea8c
commit 369c355ccf
5 changed files with 18 additions and 1 deletions

View File

@@ -1,3 +1,15 @@
Wed Jul 28 11:54:06 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>
* source/rtl/dir.c:
Fixed a typo: #if define(USE_NT) => #if defined(USE_NT).
* source/rtl/inkey.c:
Added an include of <mingw32/conio.h> when compiling with gcc.
* include/Makefile:
* tests/working/Makefile:
Updated list of files.
19990728-14:30 CET Eddie Runia <eddie@runia.com>
* source/rtl/dir.c
#include <errno.h> added

View File

@@ -21,6 +21,7 @@ C_HEADERS=\
hbsetup.h \
init.h \
initsymb.h \
inkey.h \
itemapi.h \
pcode.h \
run_exp.h \

View File

@@ -409,7 +409,7 @@ HARBOUR HB_DIRECTORY( void )
}
/* some of these are known to work under NT - I picked the letters to use.*/
/* needs testing on a Novell drive */
#if define(USE_NT)
#if defined(USE_NT)
if (attrib & FA_ENCRYPTED)
strcat(aatrib,"E");
// if (attrib & FA_NORMAL)

View File

@@ -44,6 +44,8 @@
#include <stdlib.h>
#elif defined(__IBMCPP__)
#include <conio.h>
#elif defined(__GNUC__)
#include <mingw32/conio.h>
#endif
#ifdef __WATCOMC__

View File

@@ -134,6 +134,8 @@ BAD_PRG_SOURCES=\
linecont.prg \
spawn.prg \
spawn2.prg \
statics1.prg \
statics2.prg \
test10.prg \
testid.prg \