19990715-09:50 CET Patrick Mast <harbour@PatrickMast.com>

*source/rtl/environ.c
    changed all 'defined(__MSC__)' to 'defined(__MSC__) || defined(_MSC_VER)'
    It compiles with MSVC++ 6.01 now
This commit is contained in:
Patrick Mast
1999-07-15 08:16:20 +00:00
parent ed6126f7b8
commit e27f32b4cf
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
19990715-09:50 CET Patrick Mast <harbour@PatrickMast.com>
*source/rtl/environ.c
changed all 'defined(__MSC__)' to 'defined(__MSC__) || defined(_MSC_VER)'
It compiles with MSVC++ 6.01 now
19990714-22:45 EDT David G. Holm <dholm@jsd-llc.com>
* config/dos/djgpp.cf
* Modified to support new HB_*_COMPILE variables

View File

@@ -96,13 +96,13 @@ HARBOUR HB_OS(void)
#else
/* TODO: add MSVC support but MSVC cannot detect any OS except Windows! */
#if defined(__TURBOC__) || defined(__BORLANDC__) || defined(__MSC__)
#if defined(__TURBOC__) || defined(__BORLANDC__) || defined(__MSC__) || defined(_MSC_VER)
#if defined(_Windows) || defined(_WIN32)
/* TODO: Determine the Windows type (32s/95/98/NT) and version */
hb_os = "Windows";
#else
#if defined(__MSC__)
#if defined(__MSC__) || defined(_MSC_VER)
if (_osmode == _WIN_MODE)
{
hb_os = "Windows";