From 56b242485e0bac01feee8a32e1f681b93f44cb96 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 27 Mar 2009 11:23:07 +0000 Subject: [PATCH] 2009-03-27 12:22 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * contrib/hbqt/tests/hbqt.hbp + Removed mingw32 lib not necessary. + Added gt=gtnul to suppress the console window. * utils/hbmk2/hbmk2.prg ! Fixed gtnul usage in one remaining place. --- harbour/ChangeLog | 8 ++++++++ harbour/contrib/hbqt/tests/hbqt.hbp | 3 ++- harbour/utils/hbmk2/hbmk2.prg | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 4aae4c72e8..d2e66c4c97 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,14 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-03-27 12:22 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * contrib/hbqt/tests/hbqt.hbp + + Removed mingw32 lib not necessary. + + Added gt=gtnul to suppress the console window. + + * utils/hbmk2/hbmk2.prg + ! Fixed gtnul usage in one remaining place. + 2009-03-27 11:45 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * ChangeLog * One TOFIX marked as DONE. diff --git a/harbour/contrib/hbqt/tests/hbqt.hbp b/harbour/contrib/hbqt/tests/hbqt.hbp index 1e24984fc2..e49fca0301 100644 --- a/harbour/contrib/hbqt/tests/hbqt.hbp +++ b/harbour/contrib/hbqt/tests/hbqt.hbp @@ -2,7 +2,8 @@ # $Id$ # -{mingw}libs=supc++ mingw32 +{mingw}libs=supc++ libs=hbqt libs=QtCore4 QtGui4 QtNetwork4 QtWebKit4 gui=yes +gt=gtnul diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index 62f2db913f..e950daa444 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -1167,7 +1167,7 @@ FUNCTION Main( ... ) s_aLIBVM := iif( s_lMT, aLIB_BASE_MT, aLIB_BASE_ST ) aLIB_BASE2 := ArrayAJoin( { aLIB_BASE2, t_aLIBCOREGT } ) - IF ! Empty( s_cGT ) + IF ! Empty( s_cGT ) .AND. !( Lower( s_cGT ) == "gtnul" ) IF AScan( aLIB_BASE2, {|tmp| Lower( tmp ) == Lower( s_cGT ) } ) == 0 AAdd( aLIB_BASE2, s_cGT ) ENDIF