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.
This commit is contained in:
Viktor Szakats
2009-06-15 22:40:42 +00:00
parent 9b6e0fe4a0
commit b6ce92dab3
2 changed files with 8 additions and 3 deletions

View File

@@ -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

View File

@@ -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