ChangeLogTag:Wed Jul 28 11:54:06 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -21,6 +21,7 @@ C_HEADERS=\
|
||||
hbsetup.h \
|
||||
init.h \
|
||||
initsymb.h \
|
||||
inkey.h \
|
||||
itemapi.h \
|
||||
pcode.h \
|
||||
run_exp.h \
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -44,6 +44,8 @@
|
||||
#include <stdlib.h>
|
||||
#elif defined(__IBMCPP__)
|
||||
#include <conio.h>
|
||||
#elif defined(__GNUC__)
|
||||
#include <mingw32/conio.h>
|
||||
#endif
|
||||
|
||||
#ifdef __WATCOMC__
|
||||
|
||||
@@ -134,6 +134,8 @@ BAD_PRG_SOURCES=\
|
||||
linecont.prg \
|
||||
spawn.prg \
|
||||
spawn2.prg \
|
||||
statics1.prg \
|
||||
statics2.prg \
|
||||
test10.prg \
|
||||
testid.prg \
|
||||
|
||||
|
||||
Reference in New Issue
Block a user