From b6ce92dab38409836841972a10125a6f6f01eb7f Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 15 Jun 2009 22:40:42 +0000 Subject: [PATCH] 2009-06-16 00:40 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * utils/hbmk2/hbmk2.prg ! Fixed to always turn off -mt mode for dos targets. --- harbour/ChangeLog | 6 +++++- harbour/utils/hbmk2/hbmk2.prg | 5 +++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 018525af1f..e9a3338b40 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,9 +17,13 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-06-16 00:40 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * utils/hbmk2/hbmk2.prg + ! Fixed to always turn off -mt mode for dos targets. + 2009-06-15 15:09 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * harbour/contrib/hbqt/generator/hbqtgen.prg - ! Stipped off code to generate in-build sources. Now + ! Stipped off code to generate in-build sources. Now following files resides in the SVN permanently: hbqt.h hbqt_slots.h diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index 8010dda7fe..206c27a1b4 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -1774,8 +1774,9 @@ FUNCTION hbmk( aArgs, /* @ */ lPause, /* @ */ lUTF8 ) hbmk[ _HBMK_lSHARED ] := .F. ENDIF - /* Force MT mode off in 1.0.x compatibility mode. */ - IF hbmk[ _HBMK_nHBMODE ] == _HBMODE_HB10 + /* Force MT mode off in 1.0.x compatibility and dos mode. */ + IF hbmk[ _HBMK_nHBMODE ] == _HBMODE_HB10 .OR. ; + hbmk[ _HBMK_cARCH ] == "dos" hbmk[ _HBMK_lMT ] := .F. ENDIF